Merge version_1_1781445359254 into main #1

Merged
bender merged 2 commits from version_1_1781445359254 into main 2026-06-14 13:57:04 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Accueil",
"href": "#"
"name": "Accueil", "href": "#"
},
{
"name": "Menu",
"href": "#menu"
"name": "Menu", "href": "#menu"
},
{
"name": "À Propos",
"href": "#about"
"name": "À Propos", "href": "#about"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Tandem"
logoImageSrc="http://img.b2bpic.net/free-vector/mockup-bar-restaurant-logo_53876-34855.jpg"
ctaButton={{
text: "Réserver",
href: "#contact",
}}
text: "Réserver", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -56,42 +48,27 @@ export default function Layout() {
<FooterBasic
columns={[
{
title: "Contact",
items: [
title: "Contact", items: [
{
label: "Casablanca, Maroc",
href: "#",
},
label: "Casablanca, Maroc", href: "#"},
{
label: "+212 5 00 00 00 00",
href: "tel:+212500000000",
},
label: "+212 5 00 00 00 00", href: "tel:+212500000000"},
],
},
{
title: "Horaires",
items: [
title: "Horaires", items: [
{
label: "Ouvert tous les jours",
href: "#",
},
label: "Ouvert tous les jours", href: "#"},
{
label: "Jusqu'à 23h00",
href: "#",
},
label: "Jusqu'à 23h00", href: "#"},
],
},
{
title: "Légal",
items: [
title: "Légal", items: [
{
label: "Mentions Légales",
href: "#",
},
label: "Mentions Légales", href: "#"},
{
label: "Politique de confidentialité",
href: "#",
},
label: "Politique de confidentialité", href: "#"},
],
},
]}