diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 4697341..369bb1b 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -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() {
@@ -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: "#"},
],
},
]}