Merge version_1_1781707239122 into main

Merge version_1_1781707239122 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-17 14:41:45 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
"name": "Home", "href": "#hero"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Services",
"href": "#features"
"name": "Services", "href": "#features"
},
{
"name": "Reviews",
"href": "#testimonials"
"name": "Reviews", "href": "#testimonials"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Social Proof",
"href": "#social-proof"
"name": "Social Proof", "href": "#social-proof"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -42,59 +35,44 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Tampa Roofing"
ctaButton={{
text: "Get Quote",
href: "#contact",
}}
navItems={navItems} />
logo="Tampa Roofing"
logoImageSrc="http://img.b2bpic.net/free-photo/isolated-white-house-silhouette-minimal-black-landscape_1194-641505.jpg"
ctaButton={{
text: "Get Quote", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimple
brand="Tampa Premium Roofing"
columns={[
{
title: "Company",
items: [
brand="Tampa Premium Roofing"
columns={[
{
label: "About",
href: "#about",
title: "Company", items: [
{
label: "About", href: "#about"},
{
label: "Services", href: "#features"},
],
},
{
label: "Services",
href: "#features",
title: "Support", items: [
{
label: "FAQs", href: "#faq"},
{
label: "Contact", href: "#contact"},
],
},
],
},
{
title: "Support",
items: [
]}
copyright="© 2024 Tampa Premium Roofing. All rights reserved."
links={[
{
label: "FAQs",
href: "#faq",
},
label: "Privacy Policy", href: "#"},
{
label: "Contact",
href: "#contact",
},
],
},
]}
copyright="© 2024 Tampa Premium Roofing. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
]}
/>
label: "Terms of Service", href: "#"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);