Merge version_1_1782370521417 into main #1

Merged
bender merged 2 commits from version_1_1782370521417 into main 2026-06-25 06:56:32 +00:00

View File

@@ -7,105 +7,60 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Features",
"href": "#features"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Pricing",
"href": "#pricing"
},
{
"name": "Hero",
"href": "#hero"
},
{
"name": "Product",
"href": "#product"
},
{
"name": "Metrics",
"href": "#metrics"
},
{
"name": "Testimonial",
"href": "#testimonial"
}
];
{ name: "Features", href: "#features" },
{ name: "About", href: "#about" },
{ name: "Pricing", href: "#pricing" },
{ name: "Hero", href: "#hero" },
{ name: "Product", href: "#product" },
{ name: "Metrics", href: "#metrics" },
{ name: "Testimonial", href: "#testimonial" }
];
return (
<StyleProvider buttonVariant="magnetic" siteBackground="gridDots" heroBackground="lightRaysCenter">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarInline
logo="Nutri Track"
ctaButton={{
text: "Login",
href: "/login",
}}
navItems={navItems} />
logo="Nutri Track"
ctaButton={{
text: "Login", href: "/login"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="Nutri Track"
columns={[
{
title: "Product",
items: [
brand="Nutri Track"
columns={[
{
label: "Features",
href: "#features",
title: "Product", items: [
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "#pricing" },
{ label: "Support", href: "#" },
],
},
{
label: "Pricing",
href: "#pricing",
title: "Company", items: [
{ label: "About", href: "#about" },
{ label: "Blog", href: "#" },
{ label: "Careers", href: "#" },
],
},
{
label: "Support",
href: "#",
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
],
},
],
},
{
title: "Company",
items: [
{
label: "About",
href: "#about",
},
{
label: "Blog",
href: "#",
},
{
label: "Careers",
href: "#",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
copyright="© 2024 Nutri Track. All rights reserved."
/>
]}
copyright="© 2024 Nutri Track. All rights reserved."
links={[
{ label: "Privacy", href: "#" },
{ label: "Terms", href: "#" }
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);