Update src/components/Layout.tsx

This commit is contained in:
2026-06-23 01:38:03 +00:00
parent f857a9c1dc
commit 3211dbafaa

View File

@@ -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 (
<StyleProvider buttonVariant="stagger" siteBackground="floatingGradient" heroBackground="cornerGlow">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="AquaFlow"
logoImageSrc="https://images.unsplash.com/photo-1599305445671-ac291c95aaa9?w=200&h=200&fit=crop"
ctaButton={{
text: "Get Quote",
href: "#contact",
}}
navItems={navItems} />
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}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBasic
columns={[
{
title: "Company",
items: [
columns={[
{
label: "About Us",
href: "#about",
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Careers", href: "#" },
],
},
{
label: "Careers",
href: "#",
},
],
},
{
title: "Services",
items: [
{
label: "Emergency",
href: "#services",
title: "Services", items: [
{ label: "Emergency", href: "#services" },
{ label: "Maintenance", href: "#services" },
],
},
{
label: "Maintenance",
href: "#services",
title: "Support", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Contact", href: "#contact" },
],
},
],
},
{
title: "Support",
items: [
{
label: "FAQ",
href: "#faq",
},
{
label: "Contact",
href: "#contact",
},
],
},
]}
leftText="© 2024 AquaFlow Plumbing. All rights reserved."
rightText="Professional excellence in every drop."
/>
]}
leftText="© 2024 AquaFlow Plumbing. All rights reserved."
rightText="Professional excellence in every drop."
/>
</SectionErrorBoundary>
</StyleProvider>
);