Update src/components/Layout.tsx

This commit is contained in:
2026-06-10 23:26:33 +00:00
parent c31b78f3ac
commit 307a6f3edd

View File

@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() { export default function Layout() {
const navItems = [ const navItems = [
{ {
"name": "Home", "name": "Home", "href": "#hero"
"href": "#hero"
}, },
{ {
"name": "About", "name": "About", "href": "#about"
"href": "#about"
}, },
{ {
"name": "Features", "name": "Features", "href": "#features"
"href": "#features"
}, },
{ {
"name": "Portfolio", "name": "Portfolio", "href": "#portfolio"
"href": "#portfolio"
}, },
{ {
"name": "Testimonials", "name": "Testimonials", "href": "#testimonials"
"href": "#testimonials"
}, },
{ {
"name": "Pricing", "name": "Pricing", "href": "#pricing"
"href": "#pricing"
}, },
{ {
"name": "FAQ", "name": "FAQ", "href": "#faq"
"href": "#faq"
} }
]; ];
@@ -43,11 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar"> <SectionErrorBoundary name="navbar">
<NavbarFloatingLogo <NavbarFloatingLogo
logo="AI Genesis Logo" logo="AI Genesis Logo"
logoImageSrc="https://images.unsplash.com/photo-1614680376593-902f74a5cecb?auto=format&fit=crop&w=100&h=100&q=80" logoImageSrc="https://storage.googleapis.com/webild/users/user_3AM9hp4M6eDzEwMxDU5gYArbELf/minimalist-geometric-ai-logo-for-ai-gene-1781133937295-20b31910.png"
ctaButton={{ ctaButton={{
text: "Get a Quote", text: "Get a Quote", href: "#contact"}}
href: "#contact",
}}
navItems={navItems} /> navItems={navItems} />
</SectionErrorBoundary> </SectionErrorBoundary>
<main className="flex-grow"> <main className="flex-grow">
@@ -58,67 +49,42 @@ export default function Layout() {
brand="AI Genesis" brand="AI Genesis"
columns={[ columns={[
{ {
title: "Solutions", title: "Solutions", items: [
items: [
{ {
label: "AI Web Development", label: "AI Web Development", href: "#features"},
href: "#features",
},
{ {
label: "Custom AI Features", label: "Custom AI Features", href: "#features"},
href: "#features",
},
{ {
label: "AI Consulting", label: "AI Consulting", href: "#"},
href: "#",
},
], ],
}, },
{ {
title: "Company", title: "Company", items: [
items: [
{ {
label: "About Us", label: "About Us", href: "#about"},
href: "#about",
},
{ {
label: "Our Work", label: "Our Work", href: "#portfolio"},
href: "#portfolio",
},
{ {
label: "Client Stories", label: "Client Stories", href: "#testimonials"},
href: "#testimonials",
},
], ],
}, },
{ {
title: "Support", title: "Support", items: [
items: [
{ {
label: "FAQ", label: "FAQ", href: "#faq"},
href: "#faq",
},
{ {
label: "Contact Us", label: "Contact Us", href: "#contact"},
href: "#contact",
},
{ {
label: "Privacy Policy", label: "Privacy Policy", href: "#"},
href: "#",
},
], ],
}, },
]} ]}
copyright="© 2024 AI Genesis. All rights reserved." copyright="© 2024 AI Genesis. All rights reserved."
links={[ links={[
{ {
label: "Terms of Service", label: "Terms of Service", href: "#"},
href: "#",
},
{ {
label: "Privacy Policy", label: "Privacy Policy", href: "#"},
href: "#",
},
]} ]}
/> />
</SectionErrorBoundary> </SectionErrorBoundary>