Merge version_1_1781823223110 into main #1

Merged
bender merged 2 commits from version_1_1781823223110 into main 2026-06-18 22:54:39 +00:00

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
"name": "Home", "href": "#hero"
},
{
"name": "How it Works",
"href": "#about"
"name": "How it Works", "href": "#about"
},
{
"name": "Security",
"href": "#features"
"name": "Security", "href": "#features"
},
{
"name": "Contact",
"href": "#contact"
"name": "Contact", "href": "#contact"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
},
{
"name": "Faq",
"href": "#faq"
"name": "Faq", "href": "#faq"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="RobloxAccess"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=k6l3ug"
ctaButton={{
text: "Join Now",
href: "#contact",
}}
text: "Join Now", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,42 +49,28 @@ export default function Layout() {
brand="RobloxAccess"
columns={[
{
title: "Platform",
items: [
title: "Platform", items: [
{
label: "About Us",
href: "#about",
},
label: "About Us", href: "#about"},
{
label: "Features",
href: "#features",
},
label: "Features", href: "#features"},
],
},
{
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 RobloxAccess. All rights reserved."
links={[
{
label: "Twitter",
href: "#",
},
label: "Twitter", href: "#"},
{
label: "Discord",
href: "#",
},
label: "Discord", href: "#"},
]}
/>
</SectionErrorBoundary>