diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index b9859ba..3d13c49 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,81 +7,48 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "About", - "href": "#about" - }, - { - "name": "Services", - "href": "#services" - }, - { - "name": "Reviews", - "href": "#testimonials" - }, - { - "name": "Pricing", - "href": "#pricing" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Faq", - "href": "#faq" - } -]; + { name: "About", href: "#about" }, + { name: "Services", href: "#services" }, + { name: "Reviews", href: "#testimonials" }, + { name: "Pricing", href: "#pricing" }, + { name: "Hero", href: "#hero" }, + { name: "Metrics", href: "#metrics" }, + { name: "Faq", href: "#faq" } + ]; return ( + logo="Takla" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=5bsjb4" + ctaButton={{ + text: "Book Now", href: "#contact"}} + navItems={navItems} + />
+ ]} + />
);