import { Button } from "@/components/ui/button"; import { Card, CardContent } from "@/components/ui/card"; import { Separator } from "@/components/ui/separator"; import React from "react"; export default function Accueil(): JSX.Element { // Navigation items const navItems = [ { label: "Works", hasDot: true }, { label: "Shop", hasDot: false }, { label: "Partenaires", hasDot: false }, ]; // Contact bar items const contactItems = [ { label: "Paris : 9:30 PM", hasDot: false }, { label: "Contact", hasDot: true }, ]; return (