diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 6d4277c..5d0bb1f 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,98 +7,55 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Services", - "href": "#services" - }, - { - "name": "Gallery", - "href": "#gallery" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Why Us", - "href": "#why-us" - }, - { - "name": "Testimonials", - "href": "#testimonials" - } -]; + { name: "Services", href: "#services" }, + { name: "Gallery", href: "#gallery" }, + { name: "About", href: "#about" }, + { name: "Contact", href: "#contact" }, + { name: "Hero", href: "#hero" }, + { name: "Why Us", href: "#why-us" }, + { name: "Testimonials", href: "#testimonials" } + ]; return ( + logo="AquaFlow" + logoImageSrc="http://img.b2bpic.net/free-vector/logo-unique-luxury-gradient-design-illustration_483537-1044.jpg" + ctaButton={{ + text: "Get Quote", href: "#contact"}} + navItems={navItems} + />
+ ]} + leftText="© 2024 AquaFlow Plumbing. All rights reserved." + rightText="Professional excellence in every drop." + />
);