diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 8734646..8649ebc 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,104 +7,57 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Pricing", - "href": "#pricing" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Bento", - "href": "#bento" - }, - { - "name": "Team", - "href": "#team" - } -]; + { "name": "Home", "href": "#hero" }, + { "name": "About", "href": "#about" }, + { "name": "Features", "href": "#features" }, + { "name": "Pricing", "href": "#pricing" }, + { "name": "Contact", "href": "#contact" }, + { "name": "Bento", "href": "#bento" }, + { "name": "Team", "href": "#team" } + ]; return ( + logo="NutriPremium" + logoImageSrc="http://img.b2bpic.net/free-vector/luxury-leaf-circle-line-with-gold-color-logo-template_361591-510.jpg" + ctaButton={{ + text: "Book Session", href: "#contact"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 NutriPremium. All rights reserved." + links={[{ label: "Privacy Policy", href: "#" }]} + imageSrc="http://img.b2bpic.net/free-vector/luxury-leaf-circle-line-with-gold-color-logo-template_361591-510.jpg" + />
);