From 926bfff63b30c41e9ea972bf6f6c3359d52af928 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 23 Jun 2026 11:11:40 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 88 ++++++++++++++++----------------------- 1 file changed, 37 insertions(+), 51 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index c5119c5..e8d0486 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,71 +7,57 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "How It Works", - "href": "#how-it-works" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Why Moiz", - "href": "#why-moiz" - }, - { - "name": "Niches", - "href": "#niches" - }, - { - "name": "Metrics", - "href": "#metrics" - } -]; + { + "name": "Home", "href": "#hero" + }, + { + "name": "How It Works", "href": "#how-it-works" + }, + { + "name": "Contact", "href": "#contact" + }, + { + "name": "Why Moiz", "href": "#why-moiz" + }, + { + "name": "Niches", "href": "#niches" + }, + { + "name": "Metrics", "href": "#metrics" + } + ]; return ( + logo="MoizMediaco" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=wq208t" + ctaButton={{ + text: "Work With Us", href: "#contact"}} + navItems={navItems} />
+ ]} + leftText="MoizMediaco" + rightText="© 2025 MoizMediaco. All rights reserved." + />
); -- 2.49.1