Merge version_1_1782307908965 into main #1

Merged
bender merged 1 commits from version_1_1782307908965 into main 2026-06-24 13:32:56 +00:00

View File

@@ -7,104 +7,57 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Features",
"href": "#features"
},
{
"name": "Pricing",
"href": "#pricing"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "Bento",
"href": "#bento"
},
{
"name": "Team",
"href": "#team"
}
];
{ "name": "Home", "href": "#hero" },
{ "name": "About", "href": "#about" },
{ "name": "Features", "href": "#features" },
{ "name": "Pricing", "href": "#pricing" },
{ "name": "Contact", "href": "#contact" },
{ "name": "Bento", "href": "#bento" },
{ "name": "Team", "href": "#team" }
];
return (
<StyleProvider buttonVariant="elastic" siteBackground="noise" heroBackground="cornerGlow">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="NutriPremium"
ctaButton={{
text: "Book Session",
href: "#contact",
}}
navItems={navItems} />
logo="NutriPremium"
logoImageSrc="http://img.b2bpic.net/free-vector/luxury-leaf-circle-line-with-gold-color-logo-template_361591-510.jpg"
ctaButton={{
text: "Book Session", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleMedia
brand="NutriPremium"
columns={[
{
title: "Company",
items: [
brand="NutriPremium"
columns={[
{
label: "About",
href: "#about",
title: "Company", items: [
{ label: "About", href: "#about" },
{ label: "Careers", href: "#" },
],
},
{
label: "Careers",
href: "#",
},
],
},
{
title: "Services",
items: [
{
label: "Metabolic Analysis",
href: "#features",
title: "Services", items: [
{ label: "Metabolic Analysis", href: "#features" },
{ label: "Coaching", href: "#pricing" },
],
},
{
label: "Coaching",
href: "#pricing",
title: "Legal", items: [
{ label: "Privacy", href: "#" },
{ label: "Terms", href: "#" },
],
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy",
href: "#",
},
{
label: "Terms",
href: "#",
},
],
},
]}
copyright="© 2024 NutriPremium. All rights reserved."
links={[
{
label: "Privacy Policy",
href: "#",
},
]}
imageSrc="http://img.b2bpic.net/free-vector/luxury-leaf-circle-line-with-gold-color-logo-template_361591-510.jpg"
/>
]}
copyright="© 2024 NutriPremium. All rights reserved."
links={[{ label: "Privacy Policy", href: "#" }]}
imageSrc="http://img.b2bpic.net/free-vector/luxury-leaf-circle-line-with-gold-color-logo-template_361591-510.jpg"
/>
</SectionErrorBoundary>
</StyleProvider>
);