Merge version_1_1782043378155 into main #1

Merged
bender merged 2 commits from version_1_1782043378155 into main 2026-06-21 12:04:13 +00:00

View File

@@ -7,84 +7,50 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Programs",
"href": "#programs"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Success",
"href": "#testimonials"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Catalog",
"href": "#catalog"
},
{
"name": "Metrics",
"href": "#metrics"
},
{
"name": "Team",
"href": "#team"
}
];
{ name: "Programs", href: "#programs" },
{ name: "About", href: "#about" },
{ name: "Success", href: "#testimonials" },
{ name: "Hero", href: "#hero" },
{ name: "Catalog", href: "#catalog" },
{ name: "Metrics", href: "#metrics" },
{ name: "Team", href: "#team" }
];
return (
<StyleProvider buttonVariant="bubble" siteBackground="noise" heroBackground="cornerGlow">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Gabby's Academy"
ctaButton={{
text: "Apply Now",
href: "#contact",
}}
navItems={navItems} />
logo="Gabby's Academy"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=1xclkn"
ctaButton={{
text: "Apply Now", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="Gabby's Academy"
columns={[
{
title: "Academy",
items: [
brand="Gabby's Academy"
columns={[
{
label: "Programs",
href: "#programs",
title: "Academy", items: [
{ label: "Programs", href: "#programs" },
{ label: "About", href: "#about" },
],
},
{
label: "About",
href: "#about",
title: "Support", items: [
{ label: "Contact", href: "#contact" },
{ label: "FAQ", href: "#faq" },
],
},
],
},
{
title: "Support",
items: [
{
label: "Contact",
href: "#contact",
},
{
label: "FAQ",
href: "#faq",
},
],
},
]}
copyright="© 2024 Gabby's Beauty Academy. All rights reserved."
/>
]}
copyright="© 2024 Gabby's Beauty Academy. All rights reserved."
links={[{ label: "Privacy", href: "#privacy" }, { label: "Terms", href: "#terms" }]}
/>
</SectionErrorBoundary>
</StyleProvider>
);