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" }, + ], + }, + ]} + />
);