diff --git a/src/app/conf/2025/components/cta-card-section/index.tsx b/src/app/conf/2025/components/cta-card-section/index.tsx new file mode 100644 index 0000000000..612ce2508a --- /dev/null +++ b/src/app/conf/2025/components/cta-card-section/index.tsx @@ -0,0 +1,65 @@ +import { StripesDecoration } from "@/app/conf/_design-system/stripes-decoration" + +import logoMask from "./logo-mask.webp" + +export interface CtaCardSectionProps extends React.HTMLAttributes { + title: string + description: string + children: React.ReactNode +} + +export function CtaCardSection({ + className, + title: heading, + description, + children, + ...rest +}: CtaCardSectionProps) { + return ( +
+
+
+
+

+ {heading} +

+

+ {description} +

+
+ + {children} +
+ +
+ +
+
+
+ ) +} diff --git a/src/app/conf/2025/components/cta-card-section/logo-mask.webp b/src/app/conf/2025/components/cta-card-section/logo-mask.webp new file mode 100644 index 0000000000..8c83251f30 Binary files /dev/null and b/src/app/conf/2025/components/cta-card-section/logo-mask.webp differ diff --git a/src/app/conf/2025/components/footer/index.tsx b/src/app/conf/2025/components/footer/index.tsx index 14cee22cb9..4728c3e963 100644 --- a/src/app/conf/2025/components/footer/index.tsx +++ b/src/app/conf/2025/components/footer/index.tsx @@ -23,7 +23,7 @@ export function Footer({ return (