2026-03-28 17:35:28 +01:00
|
|
|
import { Head } from '@inertiajs/react';
|
|
|
|
|
import NavGuestLayout from '@/layouts/nav-guest-layout';
|
|
|
|
|
import { HeroSection } from '@/components/features/home/HeroSection';
|
|
|
|
|
import { ServicesSection } from '@/components/features/home/ServicesSection';
|
|
|
|
|
import { AboutSection } from '@/components/features/home/AboutSection';
|
|
|
|
|
import { AlternativeSection } from '@/components/features/home/AlternativeSection';
|
|
|
|
|
import { Footer } from '@/components/footer';
|
|
|
|
|
import { ScrollToTop } from '@/components/common/ScrollToTop';
|
2025-10-22 17:09:48 +02:00
|
|
|
|
|
|
|
|
export default function Welcome() {
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<Head title="Bienvenue">
|
2026-03-28 17:35:28 +01:00
|
|
|
<link rel="preconnect" href="https://fonts.bunny.net" />
|
2025-10-22 17:09:48 +02:00
|
|
|
<link
|
|
|
|
|
href="https://fonts.bunny.net/css?family=instrument-sans:400,500,600"
|
|
|
|
|
rel="stylesheet"
|
|
|
|
|
/>
|
|
|
|
|
</Head>
|
2026-03-28 17:35:28 +01:00
|
|
|
<div className="flex flex-col min-h-screen bg-[#F5F5F5] text-[#1b1b18] dark:bg-[#0a0a0a] dark:text-[#EDEDEC]">
|
|
|
|
|
<div className="flex flex-col items-center px-4">
|
|
|
|
|
<NavGuestLayout />
|
|
|
|
|
</div>
|
|
|
|
|
<main className="flex flex-col items-center">
|
|
|
|
|
<HeroSection />
|
|
|
|
|
<ServicesSection />
|
|
|
|
|
<AboutSection />
|
|
|
|
|
<AlternativeSection />
|
|
|
|
|
</main>
|
|
|
|
|
<Footer />
|
2025-10-24 14:09:54 +02:00
|
|
|
</div>
|
2026-03-28 17:35:28 +01:00
|
|
|
<ScrollToTop />
|
2025-10-22 17:09:48 +02:00
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|