import { Link, usePage } from '@inertiajs/react'; import { ChevronDown } from 'lucide-react'; import { Button } from '@/components/ui/button'; import { dashboard, membership } from '@/routes'; import { type SharedData } from '@/types'; import illustrationImage from '@/img/utils/lrl-illustration.svg'; export function HeroSection() { const { auth } = usePage().props; const scrollToFirstSection = () => { document.getElementById('first-section')?.scrollIntoView({ behavior: 'smooth' }); }; return (
{/* Contenu principal */}

Pour un internet éthique !

"Dégooglisons"
nos ordinateurs, nos tablettes et nos smartphones.
"Le chemin est long, mais la voie est libre"

{auth.user ? ( ) : ( )}
Illustration Le Retzien Libre
{/* Flèche vers la première section */}
); }