From 04693c76c0c436c4f8261d2fa4bde1269ac39c4a Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 20 Jun 2026 20:43:33 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 78 ++++++++++++--------------------------- 1 file changed, 23 insertions(+), 55 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index f019ad0..4fc2926 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,74 +7,42 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Competition", - "href": "#hero" - }, - { - "name": "Rules", - "href": "#about" - }, - { - "name": "How to Win", - "href": "#features" - }, - { - "name": "FAQ", - "href": "#faq" - }, - { - "name": "Testimonial", - "href": "#testimonial" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Social Proof", - "href": "#social-proof" - } -]; + { name: "Competition", href: "#hero" }, + { name: "Rules", href: "#about" }, + { name: "How to Win", href: "#features" }, + { name: "FAQ", href: "#faq" }, + { name: "Testimonial", href: "#testimonial" }, + { name: "Metrics", href: "#metrics" }, + { name: "Social Proof", href: "#social-proof" } + ]; return ( + logo="Lulu Transport" + logoImageSrc="http://img.b2bpic.net/free-photo/train-station-city-life-with-car-icon_53876-120988.jpg" + ctaButton={{ text: "Leaderboard", href: "#metrics" }} + navItems={navItems} + />
+ items: [ + { label: "Competition Rules", href: "#about" }, + { label: "Leaderboard", href: "#metrics" }, + { label: "Privacy Policy", href: "#" } + ] + } + ]} + />
);