From fc269d511cb0b734becb9d4519d00902cadb233d Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 22 Jun 2026 20:48:08 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 71 ++++++++++----------------------------- 1 file changed, 18 insertions(+), 53 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 995f9e8..6210aac 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -8,71 +8,36 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Collection", - "href": "#products" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Pricing", - "href": "#pricing" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Testimonial", - "href": "#testimonial" - } -]; + { name: "Collection", href: "#products" }, + { name: "About", href: "#about" }, + { name: "Pricing", href: "#pricing" }, + { name: "Contact", href: "#contact" } + ]; return ( + logo="Third Eye" + logoImageSrc="http://img.b2bpic.net/free-vector/letter-x-o-colorful-logo-design_474888-6895.jpg" + ctaButton={{ text: "Shop Now", href: "#products" }} + navItems={navItems} + />
+ brand="Third Eye Eyeglasses" + copyright="© 2024 Third Eye Eyeglasses. All rights reserved." + socialLinks={[ + { icon: "Instagram", href: "https://www.instagram.com/thirdeyeglasses_/" }, + { icon: "Twitter", href: "#" }, + { icon: "Facebook", href: "#" } + ]} + />
);