Merge version_1_1781551260109 into main #1

Merged
bender merged 2 commits from version_1_1781551260109 into main 2026-06-15 19:22:11 +00:00

View File

@@ -7,88 +7,54 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "About",
"href": "#about"
},
{
"name": "Features",
"href": "#features"
},
{
"name": "Pricing",
"href": "#pricing"
},
{
"name": "Testimonials",
"href": "#testimonials"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Metrics",
"href": "#metrics"
},
{
"name": "Social Proof",
"href": "#social-proof"
}
];
{ name: "About", href: "#about" },
{ name: "Features", href: "#features" },
{ name: "Pricing", href: "#pricing" },
{ name: "Testimonials", href: "#testimonials" },
{ name: "Hero", href: "#hero" },
{ name: "Metrics", href: "#metrics" },
{ name: "Social Proof", href: "#social-proof" }
];
return (
<StyleProvider buttonVariant="expand" siteBackground="gridDots" heroBackground="gradientBars">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="ABTAL"
ctaButton={{
text: "Join Now",
href: "#contact",
}}
navItems={navItems} />
logo="ABTAL"
logoImageSrc="http://img.b2bpic.net/free-photo/body-fitness_53876-95316.jpg"
ctaButton={{
text: "Join Now", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="Club Sportif ABTAL"
columns={[
{
title: "Navigate",
items: [
brand="Club Sportif ABTAL"
columns={[
{
label: "About",
href: "#about",
title: "Navigate", items: [
{ label: "About", href: "#about" },
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "#pricing" },
],
},
{
label: "Features",
href: "#features",
title: "Legal", items: [
{ label: "Terms of Service", href: "#" },
{ label: "Privacy Policy", href: "#" },
],
},
{
label: "Pricing",
href: "#pricing",
},
],
},
{
title: "Legal",
items: [
{
label: "Terms of Service",
href: "#",
},
{
label: "Privacy Policy",
href: "#",
},
],
},
]}
copyright="© 2024 Club Sportif ABTAL. All rights reserved."
/>
]}
copyright="© 2024 Club Sportif ABTAL. All rights reserved."
links={[
{ label: "Home", href: "#hero" },
{ label: "Contact", href: "#contact" }
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);