Merge version_1_1781457605361 into main

Merge version_1_1781457605361 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-14 17:21:15 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
"name": "Home", "href": "#hero"
},
{
"name": "Recipes",
"href": "#recipes"
"name": "Recipes", "href": "#recipes"
},
{
"name": "Benefits",
"href": "#benefits"
"name": "Benefits", "href": "#benefits"
},
{
"name": "FAQ",
"href": "#faq"
"name": "FAQ", "href": "#faq"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="NutriChef"
logoImageSrc="http://img.b2bpic.net/free-vector/medical-capsule-digital-logo-designs-inspiration-vector-illustration_384344-1668.jpg"
ctaButton={{
text: "Get App",
href: "#contact",
}}
text: "Get App", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -56,50 +48,31 @@ export default function Layout() {
<FooterBasic
columns={[
{
title: "Product",
items: [
title: "Product", items: [
{
label: "Features",
href: "#benefits",
},
label: "Features", href: "#benefits"},
{
label: "Recipes",
href: "#recipes",
},
label: "Recipes", href: "#recipes"},
{
label: "FAQ",
href: "#faq",
},
label: "FAQ", href: "#faq"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "#",
},
label: "About Us", href: "#"},
{
label: "Careers",
href: "#",
},
label: "Careers", href: "#"},
{
label: "Press",
href: "#",
},
label: "Press", href: "#"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
]}