diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 568981e..4d14360 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,94 +7,53 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Shop", - "href": "#products" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Testimonials", - "href": "#testimonials" - } -]; + { "name": "Shop", "href": "#products" }, + { "name": "About", "href": "#about" }, + { "name": "Contact", "href": "#contact" }, + { "name": "Hero", "href": "#hero" }, + { "name": "Features", "href": "#features" }, + { "name": "Metrics", "href": "#metrics" }, + { "name": "Testimonials", "href": "#testimonials" } + ]; return ( + logo="FreshMart" + logoImageSrc="http://img.b2bpic.net/free-vector/farm-business-card-template-design_742173-21715.jpg" + ctaButton={{ + text: "Order Now", href: "#contact"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 FreshMart. All rights reserved." + links={[ + { label: "Privacy", href: "#" }, + { label: "Terms", href: "#" }, + ]} + />
);