Merge version_1_1781699595356 into main #1

Merged
bender merged 2 commits from version_1_1781699595356 into main 2026-06-17 12:34:18 +00:00

View File

@@ -7,101 +7,56 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
},
{
"name": "Features",
"href": "#features"
},
{
"name": "Pricing",
"href": "#pricing"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Gallery",
"href": "#gallery"
},
{
"name": "Metrics",
"href": "#metrics"
}
];
{ name: "Home", href: "#hero" },
{ name: "Features", href: "#features" },
{ name: "Pricing", href: "#pricing" },
{ name: "Contact", href: "#contact" },
{ name: "About", href: "#about" },
{ name: "Gallery", href: "#gallery" },
{ name: "Metrics", href: "#metrics" }
];
return (
<StyleProvider buttonVariant="default" siteBackground="noise" heroBackground="gradientBars">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="Bangladesh Horizon Drive"
ctaButton={{
text: "Pre-order Now",
href: "#pricing",
}}
navItems={navItems} />
logo="Bangladesh Horizon Drive"
logoImageSrc="http://img.b2bpic.net/free-vector/around-clock-neon-sign_1262-15862.jpg"
ctaButton={{
text: "Pre-order Now", href: "#pricing"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterBasic
columns={[
{
title: "Game",
items: [
columns={[
{
label: "About",
href: "#",
title: "Game", items: [
{ label: "About", href: "#" },
{ label: "Vehicles", href: "#" },
{ label: "Community", href: "#" },
],
},
{
label: "Vehicles",
href: "#",
title: "Support", items: [
{ label: "Help Center", href: "#" },
{ label: "System Requirements", href: "#" },
],
},
{
label: "Community",
href: "#",
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
],
},
],
},
{
title: "Support",
items: [
{
label: "Help Center",
href: "#",
},
{
label: "System Requirements",
href: "#",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
leftText="© 2024 Bangladesh Horizon Drive Team."
rightText="Powered by Unreal Engine 5."
/>
]}
leftText="© 2024 Bangladesh Horizon Drive Team."
rightText="Powered by Unreal Engine 5."
/>
</SectionErrorBoundary>
</StyleProvider>
);