diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 22a0403..5e5bc36 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,105 +7,60 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Features", - "href": "#features" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Pricing", - "href": "#pricing" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Product", - "href": "#product" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Testimonial", - "href": "#testimonial" - } -]; + { name: "Features", href: "#features" }, + { name: "About", href: "#about" }, + { name: "Pricing", href: "#pricing" }, + { name: "Hero", href: "#hero" }, + { name: "Product", href: "#product" }, + { name: "Metrics", href: "#metrics" }, + { name: "Testimonial", href: "#testimonial" } + ]; return ( + logo="Nutri Track" + ctaButton={{ + text: "Login", href: "/login"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 Nutri Track. All rights reserved." + links={[ + { label: "Privacy", href: "#" }, + { label: "Terms", href: "#" } + ]} + />
);