diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 5d89bed..2c80914 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,92 +7,51 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#hero" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Placement", - "href": "#placement" - }, - { - "name": "Demo", - "href": "#demo" - }, - { - "name": "Schedule", - "href": "#schedule" - }, - { - "name": "Register", - "href": "#register" - }, - { - "name": "Contact", - "href": "#contact" - } -]; + { name: "Home", href: "#hero" }, + { name: "About", href: "#about" }, + { name: "Features", href: "#features" }, + { name: "Placement", href: "#placement" }, + { name: "Demo", href: "#demo" }, + { name: "Schedule", href: "#schedule" }, + { name: "Register", href: "#register" }, + { name: "Contact", href: "#contact" } + ]; return ( + logo="Speak Hub Global" + ctaButton={{ + text: "Login", href: "#login"}} + navItems={navItems} + />
+ ]} + links={[]} + copyright="2026 Speak Hub Global. All rights reserved." + />
);