Update src/components/Layout.tsx
This commit is contained in:
@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
|
||||
export default function Layout() {
|
||||
const navItems = [
|
||||
{
|
||||
"name": "Home",
|
||||
"href": "/"
|
||||
"name": "Home", "href": "/"
|
||||
},
|
||||
{
|
||||
"name": "Services",
|
||||
"href": "/services"
|
||||
"name": "Services", "href": "/services"
|
||||
},
|
||||
{
|
||||
"name": "About",
|
||||
"href": "/about"
|
||||
"name": "About", "href": "/about"
|
||||
},
|
||||
{
|
||||
"name": "Reviews",
|
||||
"href": "/reviews"
|
||||
"name": "Reviews", "href": "/reviews"
|
||||
},
|
||||
{
|
||||
"name": "Contact",
|
||||
"href": "/contact"
|
||||
"name": "Contact", "href": "/contact"
|
||||
},
|
||||
{
|
||||
"name": "Hero",
|
||||
"href": "#hero"
|
||||
"name": "Hero", "href": "#hero"
|
||||
},
|
||||
{
|
||||
"name": "Metrics",
|
||||
"href": "#metrics"
|
||||
"name": "Metrics", "href": "#metrics"
|
||||
}
|
||||
];
|
||||
|
||||
@@ -43,11 +36,9 @@ export default function Layout() {
|
||||
<SectionErrorBoundary name="navbar">
|
||||
<NavbarFloatingLogo
|
||||
logo="First Aid Plumbing"
|
||||
logoImageSrc="https://images.unsplash.com/photo-1585819231155-216515f1a423?w=150&h=150&fit=crop&q=80"
|
||||
logoImageSrc="http://img.b2bpic.net/free-vector/hand-drawn-plumbing-company-logo_742173-6834.jpg"
|
||||
ctaButton={{
|
||||
text: "Call Now: 832-279-3065",
|
||||
href: "tel:+18322793065",
|
||||
}}
|
||||
text: "Call Now: 832-279-3065", href: "tel:+18322793065"}}
|
||||
navItems={navItems} />
|
||||
</SectionErrorBoundary>
|
||||
<main className="flex-grow">
|
||||
@@ -58,50 +49,32 @@ export default function Layout() {
|
||||
brand="First Aid Plumbing Specialist INC"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
title: "Quick Links", items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
label: "Home", href: "/"},
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
label: "Services", href: "/services"},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
label: "About", href: "/about"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Contact", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact Us",
|
||||
items: [
|
||||
title: "Contact Us", items: [
|
||||
{
|
||||
label: "832-279-3065",
|
||||
href: "tel:+18322793065",
|
||||
},
|
||||
label: "832-279-3065", href: "tel:+18322793065"},
|
||||
{
|
||||
label: "9847 Sageroyal Ln, Houston",
|
||||
href: "#",
|
||||
},
|
||||
label: "9847 Sageroyal Ln, Houston", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyright="© 2024 First Aid Plumbing Specialist INC. All rights reserved."
|
||||
links={[
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
label: "Terms of Service", href: "#"},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
|
||||
Reference in New Issue
Block a user