Merge version_1_1781576455694 into main #1

Merged
bender merged 2 commits from version_1_1781576455694 into main 2026-06-16 02:21:52 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Shop",
"href": "#products"
"name": "Shop", "href": "#products"
},
{
"name": "Our Story",
"href": "#about"
"name": "Our Story", "href": "#about"
},
{
"name": "Reviews",
"href": "#testimonials"
"name": "Reviews", "href": "#testimonials"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
}
];
@@ -44,9 +37,7 @@ export default function Layout() {
<NavbarFloating
logo="PAWCUP"
ctaButton={{
text: "Get Match Ready",
href: "#contact",
}}
text: "Get Match Ready", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,56 +48,36 @@ export default function Layout() {
brand="PAWCUP"
columns={[
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About",
href: "#about",
},
label: "About", href: "#about"},
{
label: "Blog",
href: "#",
},
label: "Blog", href: "#"},
],
},
{
title: "Shop",
items: [
title: "Shop", items: [
{
label: "National Kits",
href: "#products",
},
label: "National Kits", href: "#products"},
{
label: "Sizing",
href: "#",
},
label: "Sizing", href: "#"},
],
},
{
title: "Support",
href: "#",
items: [
title: "Support", items: [
{
label: "Contact",
href: "#contact",
},
label: "Contact", href: "#contact"},
{
label: "FAQ",
href: "#faq",
},
label: "FAQ", href: "#faq"},
],
},
]}
copyright="© 2024 PAWCUP. All rights reserved."
links={[
{
label: "Privacy",
href: "#",
},
label: "Privacy", href: "#"},
{
label: "Terms",
href: "#",
},
label: "Terms", href: "#"},
]}
/>
</SectionErrorBoundary>