import { siteConfig } from '@/config/site' import { content } from '@/content' import type { Metadata } from 'next' const { services: pageContent } = content.pages export const metadata: Metadata = { title: `${pageContent.meta.title} | ${siteConfig.general.name}`, description: pageContent.meta.description, openGraph: { title: `${pageContent.meta.title} | ${siteConfig.general.name}`, description: pageContent.meta.ogDescription, url: `${siteConfig.general.url}/szolgaltatasok`, }, } export default function ServicesPage() { return (
{/* Hero Section */}

{pageContent.hero.title}

{pageContent.hero.subtitle}

{/* Services Grid */}
{content.pages.home.services.items.map((service) => (
{service.icon}

{service.title}

{service.description}

{content.common.labels.features}

    {service.features.map((feature, index) => (
  • {feature}
  • ))}
{service.ctaText}
))}
{/* Detailed Services */}

{pageContent.details.title}

{pageContent.details.subtitle}

{pageContent.details.services.map((service) => (
{service.icon}

{service.title}

{service.description}

{service.specs.title}

    {service.specs.items.map((item, index) => (
  • {item}
  • ))}
))}
{/* Support Section */}

{pageContent.support.title}

{pageContent.support.subtitle}

{pageContent.support.channels.map((channel) => (

{channel.title}

{channel.description}

))}
{/* CTA Section */}

{pageContent.cta.title}

{pageContent.cta.subtitle}

{pageContent.cta.primaryButton} {pageContent.cta.secondaryButton}
) }