From ed0b15631f7c289d2b953a081749a6d8d2c5c134 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 23 Jun 2026 14:10:14 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 60 ++++++++++++--------------------------- 1 file changed, 18 insertions(+), 42 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index b068c9b..b7b4d1f 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ { - "name": "Home", - "href": "#home" + "name": "Home", "href": "#home" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Services", - "href": "#services" + "name": "Services", "href": "#services" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" }, { - "name": "Faq", - "href": "#faq" + "name": "Faq", "href": "#faq" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" } ]; @@ -43,10 +36,9 @@ export default function Layout() {
@@ -57,46 +49,30 @@ export default function Layout() { brand="Cuts BarberShop" columns={[ { - title: "Navigation", - items: [ + title: "Navigation", items: [ { - label: "Home", - href: "#home", - }, + label: "Home", href: "#home"}, { - label: "About", - href: "#about", - }, + label: "About", href: "#about"}, { - label: "Services", - href: "#services", - }, + label: "Services", href: "#services"}, ], }, { - title: "Location", - items: [ + title: "Location", items: [ { - label: "Boutique n3, Résidence Odyssée", - href: "#", - }, + label: "Boutique n3, Résidence Odyssée", href: "#"}, { - label: "El Mourouj 2074", - href: "#", - }, + label: "El Mourouj 2074", href: "#"}, ], }, ]} copyright="© 2024 Cuts BarberShop. All rights reserved." links={[ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ]} /> -- 2.49.1