Merge version_5_1781985761347 into main #4

Merged
bender merged 2 commits from version_5_1781985761347 into main 2026-06-20 20:05:39 +00:00

View File

@@ -38,71 +38,69 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarDropdown
logo="La Basse Cour 🇫🇷"
ctaButton={{
text: "03 87 75 34 36",
href: "tel:0387753436",
}}
navItems={navItems} />
logo="Bienvenue"
ctaButton={{ text: "Réserver une table", href: "#contact" }}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBasic
columns={[
{
title: "Restaurant",
items: [
columns={[
{
label: "La Basse Cour",
href: "#",
title: "Restaurant",
items: [
{
label: "La Basse Cour",
href: "#",
},
{
label: "198 rue du Général Metman",
href: "#",
},
{
label: "57070 Metz",
href: "#",
},
],
},
{
label: "198 rue du Général Metman",
href: "#",
title: "Navigation",
items: [
{
label: "Accueil",
href: "#hero",
},
{
label: "La Carte",
href: "#features",
},
{
label: "Réservation",
href: "#contact",
},
{
label: "Avis",
href: "#testimonials",
},
],
},
{
label: "57070 Metz",
href: "#",
title: "Social",
items: [
{
label: "Facebook",
href: "https://facebook.com",
},
],
},
],
},
{
title: "Navigation",
items: [
{
label: "Accueil",
href: "#hero",
},
{
label: "La Carte",
href: "#features",
},
{
label: "Réservation",
href: "#contact",
},
{
label: "Avis",
href: "#testimonials",
},
],
},
{
title: "Social",
items: [
{
label: "Facebook",
href: "https://facebook.com",
},
],
},
]}
leftText="© 2024 La Basse Cour. Tous droits réservés."
rightText="Mentions légales"
/>
]}
leftText="© 2024 La Basse Cour. Tous droits réservés."
rightText="Mentions légales"
/>
</SectionErrorBoundary>
</StyleProvider>
);
}
}