Files
roxane/resources/js/pages/welcome.tsx

30 lines
1.2 KiB
TypeScript
Raw Normal View History

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 (
<>
2026-03-30 18:50:04 +02:00
<Head title="Bienvenue sur le site du Retzien Libre" />
<div className="flex flex-col min-h-screen bg-white text-[#1b1b18] dark:bg-[#0a0a0a] dark:text-[#EDEDEC]">
2026-03-28 17:35:28 +01:00
<div className="flex flex-col items-center px-4">
<NavGuestLayout />
</div>
<main className="flex flex-col items-center">
<HeroSection />
<ServicesSection />
<AlternativeSection />
2026-03-30 18:50:04 +02:00
<AboutSection />
2026-03-28 17:35:28 +01:00
</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
</>
);
}