From d79dbac2b467cda40fb8f2ae0cc0c015a32ccd90 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 23 Jun 2026 17:19:28 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 107 +++++++++++--------------------------- 1 file changed, 31 insertions(+), 76 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 1fab99f..1927df2 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -1,100 +1,55 @@ import FooterSimpleCard from '@/components/sections/footer/FooterSimpleCard'; import NavbarFloatingLogo from '@/components/ui/NavbarFloatingLogo'; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; -import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; import { Outlet } from 'react-router-dom'; import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Home", - "href": "#" - }, - { - "name": "Features", - "href": "#features" - }, - { - "name": "Capabilities", - "href": "#capabilities" - }, - { - "name": "Testimonials", - "href": "#testimonials" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Metrics", - "href": "#metrics" - } -]; + { name: "Home", href: "#" }, + { name: "Features", href: "#features" }, + { name: "Capabilities", href: "#capabilities" }, + { name: "Testimonials", href: "#testimonials" }, + { name: "About", href: "#about" }, + { name: "Metrics", href: "#metrics" } + ]; return ( - - + + logo="LeadsFlowAI" + logoImageSrc="http://img.b2bpic.net/free-photo/innovation-development-rocket-graphic-concept_53876-120019.jpg" + ctaButton={{ text: "Get Started", href: "#contact" }} + navItems={navItems} + />
+ title: "Services", items: [ + { label: "Automation", href: "#" }, + { label: "Consulting", href: "#" } + ] + } + ]} + copyright="© 2024 LeadsFlowAI. All rights reserved." + links={[ + { label: "Privacy", href: "#" }, + { label: "Terms", href: "#" } + ]} + />
);