Merge version_1_1783007519411 into main #1

Merged
bender merged 2 commits from version_1_1783007519411 into main 2026-07-02 15:53:11 +00:00

View File

@@ -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 (
<StyleProvider buttonVariant="arrow" siteBackground="gridDots" heroBackground="lightRaysCenter">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarDropdown
logo="Speak Hub Global"
ctaButton={{
text: "Login",
href: "#login",
}}
navItems={navItems} />
logo="Speak Hub Global"
ctaButton={{
text: "Login", href: "#login"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterSimpleCard
brand="Speak Hub Global"
columns={[
{
title: "Quick Links",
items: [
brand="Speak Hub Global"
columns={[
{
label: "About Us",
href: "#about",
title: "Quick Links", items: [
{ label: "About Us", href: "#about" },
{ label: "Features", href: "#features" },
{ label: "Register", href: "#register" },
],
},
{
label: "Features",
href: "#features",
title: "Community", items: [
{ label: "WhatsApp", href: "https://chat.whatsapp.com/Dn87aph09qiJQ56TSktJfC" },
{ label: "Instagram", href: "https://www.instagram.com/speakhub_global1?igsh=MW1rOGl3cW42NXRkMA==" },
],
},
{
label: "Register",
href: "#register",
},
],
},
{
title: "Community",
items: [
{
label: "WhatsApp",
href: "https://chat.whatsapp.com/Dn87aph09qiJQ56TSktJfC",
},
{
label: "Instagram",
href: "https://www.instagram.com/speakhub_global1?igsh=MW1rOGl3cW42NXRkMA==",
},
],
},
]}
copyright="2026 Speak Hub Global. All rights reserved."
/>
]}
links={[]}
copyright="2026 Speak Hub Global. All rights reserved."
/>
</SectionErrorBoundary>
</StyleProvider>
);