From afec93816f2c6833e6c0922da24a44b4f775fde6 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 24 Jun 2026 11:07: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 372576d..70ebef8 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": "#" + "name": "Home", "href": "#" }, { - "name": "Menu", - "href": "#menu" + "name": "Menu", "href": "#menu" }, { - "name": "Reviews", - "href": "#reviews" + "name": "Reviews", "href": "#reviews" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "About", - "href": "#about" + "name": "About", "href": "#about" }, { - "name": "Metrics", - "href": "#metrics" + "name": "Metrics", "href": "#metrics" } ]; @@ -43,10 +36,9 @@ export default function Layout() {
@@ -57,46 +49,30 @@ export default function Layout() { brand="Korean Table" columns={[ { - title: "Quick Links", - items: [ + title: "Quick Links", items: [ { - label: "Menu", - href: "#menu", - }, + label: "Menu", href: "#menu"}, { - label: "Reviews", - href: "#reviews", - }, + label: "Reviews", href: "#reviews"}, { - label: "Contact Us", - href: "#contact", - }, + label: "Contact Us", href: "#contact"}, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, ], }, ]} copyright="© 2024 Korean Table. All rights reserved." links={[ { - label: "Facebook", - href: "#", - }, + label: "Facebook", href: "#"}, { - label: "Instagram", - href: "#", - }, + label: "Instagram", href: "#"}, ]} /> -- 2.49.1