From f3597838efd0893e1fa9eb1d0cba132a4fa89acc Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 16 Jun 2026 12:57:43 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 58 +++++++++------------------------------ 1 file changed, 13 insertions(+), 45 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 49b2380..f301898 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,34 +8,13 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Services", - "href": "#services" - }, - { - "name": "Testimonials", - "href": "#testimonials" - }, - { - "name": "Maintenance", - "href": "#maintenance" - }, - { - "name": "Faq", - "href": "#faq" - }, - { - "name": "Contact", - "href": "#contact" - } + { name: "Home", href: "#hero" }, + { name: "About", href: "#about" }, + { name: "Services", href: "#services" }, + { name: "Testimonials", href: "#testimonials" }, + { name: "Maintenance", href: "#maintenance" }, + { name: "Faq", href: "#faq" }, + { name: "Contact", href: "#contact" } ]; return ( @@ -44,11 +23,9 @@ export default function Layout() {
@@ -59,21 +36,12 @@ export default function Layout() { brand="Crystal Gardens Landscape & Gardening Services" copyright="© 2024 Crystal Gardens. All rights reserved." socialLinks={[ - { - icon: Facebook, - href: "https://facebook.com", - }, - { - icon: Instagram, - href: "https://instagram.com", - }, - { - icon: Twitter, - href: "https://twitter.com", - }, + { icon: "Facebook", href: "https://facebook.com" }, + { icon: "Instagram", href: "https://instagram.com" }, + { icon: "Twitter", href: "https://twitter.com" }, ]} /> ); -} +} \ No newline at end of file