import { content } from '@/content' import Image from 'next/image' const { home: pageContent } = content.pages export default function Home() { return (
{/* Hero Section */}
{/* Background decoration */}

{pageContent.hero.title}

{pageContent.hero.description}

{pageContent.hero.trustBullets && (
{pageContent.hero.trustBullets.map((bullet: string, i: number) => (
{bullet}
))}
)}
{/* USP Section */}

{pageContent.about.title}

{pageContent.about.usps.map((usp, index) => (
{usp.icon}

{usp.title}

{usp.description}

))}
{/* Services Section */}

{pageContent.services.title}

{pageContent.services.subtitle}

{pageContent.services.items.map((service, index) => (
{service.icon}

{service.title}

{service.description}

{pageContent.serviceFeatures.title}

    {service.features.map((feature, idx) => (
  • {feature}
  • ))}
{service.ctaText}
))}
{/* Partners Section */} {pageContent.partners.items.length > 0 && (

{pageContent.partners.title}

{pageContent.partners.subtitle}

{pageContent.partners.items.map((partner) => ( {partner.name} {partner.name} ))}
)} {/* CTA Section */}
{/* Animated background elements */}

{pageContent.cta.title}

{pageContent.cta.subtitle}

{pageContent.cta.button}
) }