Merge version_1_1781442410843 into main #1

Merged
bender merged 2 commits from version_1_1781442410843 into main 2026-06-14 13:08:06 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Gear",
"href": "#features"
"name": "Gear", "href": "#features"
},
{
"name": "Stats",
"href": "#stats"
"name": "Stats", "href": "#stats"
},
{
"name": "Team",
"href": "#team"
"name": "Team", "href": "#team"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="ADIL XO"
logoImageSrc="http://img.b2bpic.net/free-photo/biohazard-sign-ai-generated_268835-18740.jpg"
ctaButton={{
text: "Subscribe",
href: "#contact",
}}
text: "Subscribe", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,59 +49,38 @@ export default function Layout() {
brand="ADIL XO"
columns={[
{
title: "Navigation",
items: [
title: "Navigation", items: [
{
label: "About",
href: "#about",
},
label: "About", href: "#about"},
{
label: "Stats",
href: "#stats",
},
label: "Stats", href: "#stats"},
{
label: "Team",
href: "#team",
},
label: "Team", href: "#team"},
],
},
{
title: "Community",
items: [
title: "Community", items: [
{
label: "Discord",
href: "#",
},
label: "Discord", href: "#"},
{
label: "Twitter",
href: "#",
},
label: "Twitter", href: "#"},
{
label: "YouTube",
href: "#",
},
label: "YouTube", href: "#"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
],
},
]}
copyright="© 2024 ADIL XO Gaming. All rights reserved."
links={[
{
label: "Back to Top",
href: "#",
},
label: "Back to Top", href: "#"},
]}
/>
</SectionErrorBoundary>