diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 334f648..bda5c78 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": "About", - "href": "/about" + "name": "About", "href": "/about" }, { - "name": "Services", - "href": "/services" + "name": "Services", "href": "/services" }, { - "name": "Projects", - "href": "/projects" + "name": "Projects", "href": "/projects" }, { - "name": "Contact", - "href": "#contact" + "name": "Contact", "href": "#contact" }, { - "name": "Hero", - "href": "#hero" + "name": "Hero", "href": "#hero" }, { - "name": "Services Grid", - "href": "#services-grid" + "name": "Services Grid", "href": "#services-grid" } ]; @@ -43,10 +36,9 @@ export default function Layout() {
@@ -56,42 +48,27 @@ export default function Layout() {