diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index fabc78b..4618a2d 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,80 +7,51 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "About Us", - "href": "#about" - }, - { - "name": "Services", - "href": "#services" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Features Comp", - "href": "#features-comp" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Testimonials", - "href": "#testimonials" - } -]; + { name: "Home", href: "#hero" }, + { name: "About Us", href: "#about" }, + { name: "Services", href: "#services" }, + { name: "Contact", href: "#contact" }, + { name: "Features Comp", href: "#features-comp" }, + { name: "Metrics", href: "#metrics" }, + { name: "Testimonials", href: "#testimonials" } + ]; return ( + logo="Wallach Iron & Metal" + logoImageSrc="http://img.b2bpic.net/free-vector/creative-text-effect-editable-modern-creative-text-style_314614-3360.jpg" + ctaButton={{ + text: "Call Now", href: "tel:314-389-1129"}} + navItems={navItems} + />
+ ] + } + copyright="Copyright © 2016 Wallach Iron & Metal Co., Inc." + links={[]} + />
);