Merge version_1_1781564346591 into main #1

Merged
bender merged 2 commits from version_1_1781564346591 into main 2026-06-15 23:00:11 +00:00

View File

@@ -9,32 +9,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Services",
"href": "#features"
"name": "Services", "href": "#features"
},
{
"name": "Results",
"href": "#metrics"
"name": "Results", "href": "#metrics"
},
{
"name": "Case Studies",
"href": "#testimonials"
"name": "Case Studies", "href": "#testimonials"
},
{
"name": "Pricing",
"href": "#pricing"
"name": "Pricing", "href": "#pricing"
},
{
"name": "Hero",
"href": "#hero"
"name": "Hero", "href": "#hero"
},
{
"name": "Social Proof",
"href": "#social-proof"
"name": "Social Proof", "href": "#social-proof"
},
{
"name": "About",
"href": "#about"
"name": "About", "href": "#about"
}
];
@@ -43,32 +36,29 @@ export default function Layout() {
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloatingLogo
logo="AI Consulting"
ctaButton={{
text: "Schedule Audit",
href: "#contact",
}}
navItems={navItems} />
logo="AI Consulting"
logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=wl4pt0"
ctaButton={{
text: "Schedule Audit", href: "#contact"}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterMinimal
brand="AI Consulting Agency"
copyright="© 2024 AI Consulting Agency. All rights reserved."
socialLinks={[
{
icon: Twitter,
},
{
icon: Linkedin,
},
{
icon: Github,
},
]}
/>
brand="AI Consulting Agency"
copyright="© 2024 AI Consulting Agency. All rights reserved."
socialLinks={[
{
icon: "Twitter"},
{
icon: "Linkedin"},
{
icon: "Github"},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);