Update src/components/Layout.tsx

This commit is contained in:
2026-06-16 15:03:30 +00:00
parent 841d8cf332
commit 69ecb37abc

View File

@@ -7,103 +7,55 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "About",
"href": "#about"
},
{
"name": "Services",
"href": "#services"
},
{
"name": "Reviews",
"href": "#reviews"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Features",
"href": "#features"
},
{
"name": "Metrics",
"href": "#metrics"
}
];
{ name: "About", href: "#about" },
{ name: "Services", href: "#services" },
{ name: "Reviews", href: "#reviews" },
{ name: "Contact", href: "#contact" },
{ name: "Hero", href: "#hero" },
{ name: "Features", href: "#features" },
{ name: "Metrics", href: "#metrics" }
];
return (
<StyleProvider buttonVariant="default" siteBackground="gridDots" heroBackground="cornerGlow">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="ROCO"
logoImageSrc="https://images.unsplash.com/photo-1562184552-997c461abbe6?auto=format&fit=crop&w=64&h=64"
ctaButton={{
text: "Get a Quote",
href: "#contact",
}}
navItems={navItems} />
logo="ROCO"
logoImageSrc="http://img.b2bpic.net/free-photo/top-view-crockery-with-teapot_23-2148798079.jpg"
ctaButton={{
text: "Get a Quote", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="ROCO Painting Services Inc."
columns={[
{
title: "Company",
items: [
brand="ROCO Painting Services Inc."
columns={[
{
label: "About Us",
href: "#about",
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Services", href: "#services" },
{ label: "Contact", href: "#contact" },
],
},
{
label: "Services",
href: "#services",
title: "Help", items: [
{ label: "Support", href: "#" },
{ label: "Careers", href: "#" },
{ label: "Terms", href: "#" },
],
},
{
label: "Contact",
href: "#contact",
},
],
},
{
title: "Help",
items: [
{
label: "Support",
href: "#",
},
{
label: "Careers",
href: "#",
},
{
label: "Terms",
href: "#",
},
],
},
]}
copyright="© 2024 Roco Painting Services Inc. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
]}
/>
]}
copyright="© 2024 Roco Painting Services Inc. All rights reserved."
links={[
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);