Update src/components/Layout.tsx

This commit is contained in:
2026-06-19 08:36:56 +00:00
parent 50465785a1
commit 6e60368629

View File

@@ -9,32 +9,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
"name": "Home", "href": "#hero"
},
{
"name": "Games",
"href": "#products"
"name": "Games", "href": "#products"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
},
{
"name": "Support",
"href": "#faq"
"name": "Support", "href": "#faq"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Metrics",
"href": "#metrics"
"name": "Metrics", "href": "#metrics"
}
];
@@ -44,11 +37,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="LUXE BET"
logoImageSrc="https://images.unsplash.com/photo-1599305445671-ac291c95aaa9?w=200&h=200&fit=crop"
logoImageSrc="http://img.b2bpic.net/free-vector/casino-neon-sign-collection_23-2148140684.jpg"
ctaButton={{
text: "Play Now",
href: "#contact",
}}
text: "Play Now", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -60,17 +51,11 @@ export default function Layout() {
copyright="© 2024 LUXE BET. All rights reserved."
socialLinks={[
{
icon: Twitter,
href: "#",
},
icon: "Twitter", href: "#"},
{
icon: Instagram,
href: "#",
},
icon: "Instagram", href: "#"},
{
icon: Facebook,
href: "#",
},
icon: "Facebook", href: "#"},
]}
/>
</SectionErrorBoundary>