Merge version_1_1781657025711 into main #1

Merged
bender merged 2 commits from version_1_1781657025711 into main 2026-06-17 00:44:48 +00:00

View File

@@ -9,32 +9,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Services",
"href": "#services"
"name": "Services", "href": "#services"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Showcase",
"href": "#showcase"
"name": "Showcase", "href": "#showcase"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
}
];
@@ -43,35 +36,28 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Cantina Roofing"
ctaButton={{
text: "Get Quote",
href: "#contact",
}}
navItems={navItems} />
logo="Cantina Roofing"
logoImageSrc="http://img.b2bpic.net/free-vector/home-kids-logo-design_474888-1980.jpg"
ctaButton={{
text: "Get Quote", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterMinimal
brand="Cantina Roofing"
copyright="© 2024 Cantina Roofing. All rights reserved."
socialLinks={[
{
icon: Instagram,
href: "#",
},
{
icon: Facebook,
href: "#",
},
{
icon: Twitter,
href: "#",
},
]}
/>
brand="Cantina Roofing"
copyright="© 2024 Cantina Roofing. All rights reserved."
socialLinks={[
{
icon: "Instagram", href: "#"},
{
icon: "Facebook", href: "#"},
{
icon: "Twitter", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);