a4b53caaa2
- HeroSection, FeaturedProjectsSection, ServicesSection - TestimonialsSection, FAQSection with homeFAQs, CTASection - Preserved useSeoMeta and JSON-LD from Phase 2 stub
78 lines
1.9 KiB
Vue
78 lines
1.9 KiB
Vue
<script setup lang="ts">
|
|
import { homeFAQs } from '~/data/faq'
|
|
|
|
const { t } = useI18n()
|
|
|
|
useSeoMeta({
|
|
title: () => t('seo.home.title'),
|
|
description: () => t('seo.home.description'),
|
|
ogTitle: () => t('seo.home.title'),
|
|
ogDescription: () => t('seo.home.description'),
|
|
ogImage: 'https://killiandalcin.fr/og-image.png',
|
|
ogImageWidth: 1200,
|
|
ogImageHeight: 630,
|
|
ogType: 'website',
|
|
})
|
|
|
|
useHead({
|
|
script: [
|
|
{
|
|
type: 'application/ld+json',
|
|
innerHTML: JSON.stringify({
|
|
'@context': 'https://schema.org',
|
|
'@graph': [
|
|
{
|
|
'@type': 'Person',
|
|
name: 'Killian Dalcin',
|
|
url: 'https://killiandalcin.fr',
|
|
jobTitle: 'Developpeur Full Stack Freelance',
|
|
email: 'contact@killiandalcin.fr',
|
|
sameAs: [
|
|
'https://linkedin.com/in/killian-dal-cin',
|
|
'https://www.fiverr.com/users/mr_kayjaydee',
|
|
'https://gitea.kamisama.ovh/kayjaydee',
|
|
],
|
|
},
|
|
{
|
|
'@type': 'ProfessionalService',
|
|
name: 'Killian Dalcin - Developpeur Full Stack',
|
|
url: 'https://killiandalcin.fr',
|
|
logo: 'https://killiandalcin.fr/images/logo.webp',
|
|
priceRange: '$$$',
|
|
areaServed: 'Worldwide',
|
|
},
|
|
],
|
|
}),
|
|
},
|
|
],
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<!-- Hero Section -->
|
|
<HeroSection />
|
|
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<!-- Featured Projects Section -->
|
|
<FeaturedProjectsSection />
|
|
|
|
<!-- Services Section -->
|
|
<ServicesSection />
|
|
|
|
<!-- Testimonials Section -->
|
|
<TestimonialsSection />
|
|
|
|
<!-- FAQ Section -->
|
|
<FAQSection
|
|
:faqs="homeFAQs"
|
|
:title="t('faq.title')"
|
|
:subtitle="t('faq.subtitle')"
|
|
/>
|
|
</div>
|
|
|
|
<!-- CTA Section -->
|
|
<CTASection />
|
|
</div>
|
|
</template>
|