Merge version_1_1781133842365 into main

Merge version_1_1781133842365 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-06-10 23:26:36 +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": "About",
"href": "#about"
"name": "About", "href": "#about"
},
{
"name": "Features",
"href": "#features"
"name": "Features", "href": "#features"
},
{
"name": "Portfolio",
"href": "#portfolio"
"name": "Portfolio", "href": "#portfolio"
},
{
"name": "Testimonials",
"href": "#testimonials"
"name": "Testimonials", "href": "#testimonials"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
},
{
"name": "FAQ",
"href": "#faq"
"name": "FAQ", "href": "#faq"
}
];
@@ -43,10 +36,9 @@ export default function Layout() {
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="AI Genesis Logo"
logoImageSrc="https://storage.googleapis.com/webild/users/user_3AM9hp4M6eDzEwMxDU5gYArbELf/minimalist-geometric-ai-logo-for-ai-gene-1781133937295-20b31910.png"
ctaButton={{
text: "Get a Quote",
href: "#contact",
}}
text: "Get a Quote", href: "#contact"}}
navItems={navItems} />
</SectionErrorBoundary>
<main className="flex-grow">
@@ -57,67 +49,42 @@ export default function Layout() {
brand="AI Genesis"
columns={[
{
title: "Solutions",
items: [
title: "Solutions", items: [
{
label: "AI Web Development",
href: "#features",
},
label: "AI Web Development", href: "#features"},
{
label: "Custom AI Features",
href: "#features",
},
label: "Custom AI Features", href: "#features"},
{
label: "AI Consulting",
href: "#",
},
label: "AI Consulting", href: "#"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "#about",
},
label: "About Us", href: "#about"},
{
label: "Our Work",
href: "#portfolio",
},
label: "Our Work", href: "#portfolio"},
{
label: "Client Stories",
href: "#testimonials",
},
label: "Client Stories", href: "#testimonials"},
],
},
{
title: "Support",
items: [
title: "Support", items: [
{
label: "FAQ",
href: "#faq",
},
label: "FAQ", href: "#faq"},
{
label: "Contact Us",
href: "#contact",
},
label: "Contact Us", href: "#contact"},
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
],
},
]}
copyright="© 2024 AI Genesis. All rights reserved."
links={[
{
label: "Terms of Service",
href: "#",
},
label: "Terms of Service", href: "#"},
{
label: "Privacy Policy",
href: "#",
},
label: "Privacy Policy", href: "#"},
]}
/>
</SectionErrorBoundary>