Merge version_1_1781768685605 into main #1

Merged
bender merged 2 commits from version_1_1781768685605 into main 2026-06-18 07:45:57 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Breeds",
"href": "#breeds"
"name": "Breeds", "href": "#breeds"
},
{
"name": "Process",
"href": "#process"
"name": "Process", "href": "#process"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
}
];
@@ -44,9 +37,7 @@ export default function Layout() {
<NavbarInline
logo="Rabbit Farm"
ctaButton={{
text: "Inquire",
href: "#contact",
}}
text: "Inquire", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,29 +48,19 @@ export default function Layout() {
brand="Harmony Rabbit Farm"
columns={[
{
title: "Resources",
items: [
{
label: "About",
href: "#about",
},
label: "About", href: "#about"},
{
label: "Contact",
href: "#contact",
},
label: "Contact", href: "#contact"},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
]}