Merge version_1_1781387978437 into main #1

Merged
bender merged 2 commits from version_1_1781387978437 into main 2026-06-13 22:00:40 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Accueil",
"href": "#hero"
"name": "Accueil", "href": "#hero"
},
{
"name": "À propos",
"href": "#about"
"name": "À propos", "href": "#about"
},
{
"name": "Menu",
"href": "#menu"
"name": "Menu", "href": "#menu"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -42,46 +35,38 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Café Corrinda"
ctaButton={{
text: "Nous contacter",
href: "#contact",
}}
navItems={navItems} />
logo="Café Corrinda"
logoImageSrc="http://img.b2bpic.net/free-vector/geometric-minimalist-food-logo_23-2148918120.jpg"
ctaButton={{
text: "Nous contacter", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBrand
brand="Café Corrinda"
columns={[
{
items: [
brand="Café Corrinda"
columns={[
{
label: "Facebook",
href: "https://facebook.com",
items: [
{
label: "Facebook", href: "https://facebook.com"},
{
label: "Instagram", href: "https://instagram.com"},
],
},
{
label: "Instagram",
href: "https://instagram.com",
items: [
{
label: "Mentions légales", href: "#"},
{
label: "Confidentialité", href: "#"},
],
},
],
},
{
items: [
{
label: "Mentions légales",
href: "#",
},
{
label: "Confidentialité",
href: "#",
},
],
},
]}
/>
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);