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