Merge version_1_1781468836291 into main #1

Merged
bender merged 2 commits from version_1_1781468836291 into main 2026-06-14 20:28:33 +00:00

View File

@@ -7,108 +7,68 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
},
{
"name": "Products",
"href": "#products"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "Features",
"href": "#features"
},
{
"name": "Testimonials",
"href": "#testimonials"
},
{
"name": "Social Proof",
"href": "#social-proof"
}
];
{ name: "Home", href: "#hero" },
{ name: "Products", href: "#products" },
{ name: "About", href: "#about" },
{ name: "Contact", href: "#contact" },
{ name: "Features", href: "#features" },
{ name: "Testimonials", href: "#testimonials" },
{ name: "Social Proof", href: "#social-proof" }
];
return (
<StyleProvider buttonVariant="default" siteBackground="noise" heroBackground="lightRaysCenter">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Jacob's Sport Caps"
ctaButton={{
text: "Call Now",
href: "tel:832-404-6764",
}}
navItems={navItems} />
logo="Jacob's Sport Caps"
logoImageSrc="http://img.b2bpic.net/free-vector/soccer-logo-template_23-2149588679.jpg"
ctaButton={{
text: "Call Now", href: "tel:832-404-6764"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="Jacob's Sport Caps"
columns={[
{
title: "Store Locations",
items: [
brand="Jacob's Sport Caps"
columns={[
{
label: "Greens Rd, Houston, TX",
href: "#",
title: "Store Locations", items: [
{
label: "Greens Rd, Houston, TX", href: "#"},
{
label: "FM 1960 Bypass, Humble, TX", href: "#"},
],
},
{
label: "FM 1960 Bypass, Humble, TX",
href: "#",
},
],
},
{
title: "Support",
items: [
{
label: "Price Matching Policy",
href: "#",
title: "Support", items: [
{
label: "Price Matching Policy", href: "#"},
{
label: "Shipping Info", href: "#"},
],
},
{
label: "Shipping Info",
href: "#",
title: "Connect", items: [
{
label: "Facebook", href: "https://facebook.com"},
{
label: "Instagram", href: "https://instagram.com"},
],
},
],
},
{
title: "Connect",
items: [
]}
copyright="© 2024 Jacob's Sport Caps. All rights reserved."
links={[
{
label: "Facebook",
href: "https://facebook.com",
},
label: "Privacy Policy", href: "#"},
{
label: "Instagram",
href: "https://instagram.com",
},
],
},
]}
copyright="© 2024 Jacob's Sport Caps. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
]}
imageSrc="http://img.b2bpic.net/free-vector/soccer-logo-template_23-2149588679.jpg"
/>
label: "Terms of Service", href: "#"},
]}
imageSrc="http://img.b2bpic.net/free-vector/soccer-logo-template_23-2149588679.jpg"
/>
</SectionErrorBoundary>
</StyleProvider>
);