From 8e6b86afdd9f46aeaeb86ce48336a18a2b258a51 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 17 Jun 2026 12:51:07 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 60 ++++++++++++++------------------------- 1 file changed, 21 insertions(+), 39 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index cf89f7a..f0d9f2d 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -2,62 +2,44 @@ import FooterMinimal from '@/components/sections/footer/FooterMinimal'; import NavbarFloatingLogo from '@/components/ui/NavbarFloatingLogo'; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; -import { Instagram, Linkedin, Twitter } from "lucide-react"; import { Outlet } from 'react-router-dom'; import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "About", "href": "#about" - }, - { - "name": "Services", "href": "#services" - }, - { - "name": "Results", "href": "#metrics" - }, - { - "name": "Testimonials", "href": "#testimonials" - }, - { - "name": "Hero", "href": "#hero" - }, - { - "name": "Faq", "href": "#faq" - }, - { - "name": "Social Proof", "href": "#social-proof" - } -]; + { "name": "Hero", "href": "#hero" }, + { "name": "About", "href": "#about" }, + { "name": "Services", "href": "#services" }, + { "name": "Results", "href": "#metrics" }, + { "name": "Testimonials", "href": "#testimonials" }, + { "name": "Faq", "href": "#faq" }, + { "name": "Social Proof", "href": "#social-proof" } + ]; return ( + logo="DuoBlas" + logoImageSrc="http://img.b2bpic.net/free-photo/business-people-holding-linkedin-logo_53876-71128.jpg" + ctaButton={{ text: "Get Started", href: "#contact" }} + navItems={navItems} + />
+ brand="DuoBlas Marketing" + copyright="© 2024 DuoBlas Marketing. All rights reserved." + socialLinks={[ + { icon: "Twitter", href: "https://twitter.com" }, + { icon: "Linkedin", href: "https://linkedin.com" }, + { icon: "Instagram", href: "https://instagram.com" } + ]} + />
); -- 2.49.1