From 0c502e0f560c85aa6154d7ab5d0d425bcd788c54 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 23 Jun 2026 10:43:20 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 56 ++++++++++++--------------------------- 1 file changed, 17 insertions(+), 39 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index a4a8a4a..5eae278 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": "Features", - "href": "#features" + "name": "Features", "href": "#features" }, { - "name": "Works", - "href": "#works" + "name": "Works", "href": "#works" }, { - "name": "Team", - "href": "#team" + "name": "Team", "href": "#team" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Testimonials", - "href": "#testimonials" + "name": "Testimonials", "href": "#testimonials" }, { - "name": "Social Proof", - "href": "#social-proof" + "name": "Social Proof", "href": "#social-proof" } ]; @@ -43,10 +36,9 @@ export default function Layout() {
@@ -57,42 +49,28 @@ export default function Layout() { brand="SVN Studio" columns={[ { - title: "Company", - items: [ + title: "Company", items: [ { - label: "About", - href: "#", - }, + label: "About", href: "#"}, { - label: "Works", - href: "#works", - }, + label: "Works", href: "#works"}, ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { - label: "Blog", - href: "#", - }, + label: "Blog", href: "#"}, { - label: "Support", - href: "#", - }, + label: "Support", href: "#"}, ], }, ]} copyright="© 2024 SVN Studio. All rights reserved." links={[ { - label: "Privacy", - href: "#", - }, + label: "Privacy", href: "#"}, { - label: "Terms", - href: "#", - }, + label: "Terms", href: "#"}, ]} /> -- 2.49.1