diff --git a/components/blocks/BenefitGrid.tsx b/components/blocks/BenefitGrid.tsx index 7df3c4f1e..19301abff 100644 --- a/components/blocks/BenefitGrid.tsx +++ b/components/blocks/BenefitGrid.tsx @@ -75,7 +75,7 @@ const Icons = { export function BenefitGrid({ badge, title, description, benefits }: BenefitGridProps) { return ( -
+
diff --git a/components/blocks/CertificatesBlock.tsx b/components/blocks/CertificatesBlock.tsx index 5377e130b..9149b354f 100644 --- a/components/blocks/CertificatesBlock.tsx +++ b/components/blocks/CertificatesBlock.tsx @@ -99,7 +99,7 @@ export function CertificatesBlock({ badge, title, description, certificates = de if (!isMounted) { return ( -
+
{!hideHeader && (
diff --git a/components/blocks/CompanyTimeline.tsx b/components/blocks/CompanyTimeline.tsx index 87a5463c8..d7a48b683 100644 --- a/components/blocks/CompanyTimeline.tsx +++ b/components/blocks/CompanyTimeline.tsx @@ -80,7 +80,7 @@ export function CompanyTimeline({ const lineHeight = useTransform(scrollYProgress, [0, 1], ["0%", "100%"]); return ( -
+
{/* Background Decor */}
diff --git a/components/blocks/CompetenceBentoGrid.tsx b/components/blocks/CompetenceBentoGrid.tsx index 77bfd76bc..45cd49921 100644 --- a/components/blocks/CompetenceBentoGrid.tsx +++ b/components/blocks/CompetenceBentoGrid.tsx @@ -62,7 +62,7 @@ export function CompetenceBentoGrid(props: CompetenceBentoGridProps) { // Static fallback for SSR if (!isMounted) { return ( -
+
diff --git a/components/blocks/ContactSection.tsx b/components/blocks/ContactSection.tsx index 1b58d0b43..2818d4de0 100644 --- a/components/blocks/ContactSection.tsx +++ b/components/blocks/ContactSection.tsx @@ -41,7 +41,7 @@ export const ContactSection: React.FC = (props) => { const { showForm, showMap } = props; return ( -
+
= ({ if (!questions || questions.length === 0) return null; return ( -
+
{subtitle && ( diff --git a/components/blocks/ReferencesSlider.tsx b/components/blocks/ReferencesSlider.tsx index 43ddb3fc4..f1554d1ad 100644 --- a/components/blocks/ReferencesSlider.tsx +++ b/components/blocks/ReferencesSlider.tsx @@ -94,7 +94,7 @@ export function ReferencesSlider(props: ReferencesSliderProps) { return ( -
+
diff --git a/components/blocks/ServiceDetailGrid.tsx b/components/blocks/ServiceDetailGrid.tsx index 36a405cb0..627bd9f17 100644 --- a/components/blocks/ServiceDetailGrid.tsx +++ b/components/blocks/ServiceDetailGrid.tsx @@ -105,7 +105,7 @@ export function ServiceDetailGrid({ panels }: ServiceDetailGridProps) { return ( -
+
diff --git a/components/blocks/SubCompanyTiles.tsx b/components/blocks/SubCompanyTiles.tsx index 37f766146..2a3047e4b 100644 --- a/components/blocks/SubCompanyTiles.tsx +++ b/components/blocks/SubCompanyTiles.tsx @@ -68,7 +68,7 @@ export function SubCompanyTiles(props: SubCompanyTilesProps) { })) || defaultCompanies; return ( -
+
{(badge || title) && ( diff --git a/components/blocks/TeamGrid.tsx b/components/blocks/TeamGrid.tsx index 1f556a762..adf0d25c4 100644 --- a/components/blocks/TeamGrid.tsx +++ b/components/blocks/TeamGrid.tsx @@ -28,7 +28,7 @@ export function TeamGrid({ members }: TeamGridProps) { if (!members || members.length === 0) return null; return ( -
+

{t('badge')}

diff --git a/components/home/CTA.tsx b/components/home/CTA.tsx index d35c67e84..cea33fd33 100644 --- a/components/home/CTA.tsx +++ b/components/home/CTA.tsx @@ -7,7 +7,7 @@ export default function CTA({ data }: { data?: any }) { const locale = useLocale(); return ( -
+
diff --git a/components/home/Experience.tsx b/components/home/Experience.tsx index 3ab85c3d1..3b3a1181a 100644 --- a/components/home/Experience.tsx +++ b/components/home/Experience.tsx @@ -7,7 +7,7 @@ export default function Experience({ data }: { data?: any }) { const t = useTranslations('Home.experience'); return ( -
+
+
{data?.title || t('title')} diff --git a/components/home/MeetTheTeam.tsx b/components/home/MeetTheTeam.tsx index 998734eb4..84951200f 100644 --- a/components/home/MeetTheTeam.tsx +++ b/components/home/MeetTheTeam.tsx @@ -9,7 +9,7 @@ export default function MeetTheTeam({ data }: { data?: any }) { const locale = useLocale(); return ( -
+
+
{t('gallery.title')} diff --git a/components/ui/Section.tsx b/components/ui/Section.tsx index fff973f90..e1c73ac77 100644 --- a/components/ui/Section.tsx +++ b/components/ui/Section.tsx @@ -3,7 +3,7 @@ import { cn } from './utils'; export function Section({ className, children, ...props }: React.HTMLAttributes) { return ( -
+
{children}
);