From 5280d584c310969fa8e64a65fca8aca788081f49 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 23 Jun 2026 12:28:51 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 80 ++++++++++++++------------------------- 1 file changed, 29 insertions(+), 51 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 8743aab..6e92156 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,71 +7,49 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", "href": "#" - }, - { - "name": "Courses", "href": "#courses" - }, - { - "name": "About", "href": "#about" - }, - { - "name": "Hero", "href": "#hero" - }, - { - "name": "Metrics", "href": "#metrics" - }, - { - "name": "Faq", "href": "#faq" - }, - { - "name": "Contact", "href": "#contact" - } -]; + { name: "Home", href: "/" }, + { name: "Courses", href: "#courses" }, + { name: "About", href: "#about" }, + { name: "Hero", href: "#hero" }, + { name: "Metrics", href: "#metrics" }, + { name: "Faq", href: "#faq" }, + { name: "Contact", href: "#contact" } + ]; return ( + logo="doaa.classroom" + ctaButton={{ + text: "Instagram", href: "https://instagram.com/doaa.classroom" + }} + navItems={navItems} + />
+ title: "Company", links: [ + { label: "About", href: "#about" }, + { label: "Contact", href: "#contact" }, + ], + }, + ]} + />
); -- 2.49.1