From 4daa2c5f88250e3ab8b06551c9af68013bf99092 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 14 Jun 2026 03:49:14 +0000 Subject: [PATCH] Update src/components/Layout.tsx --- src/components/Layout.tsx | 62 ++++++++++++++------------------------- 1 file changed, 22 insertions(+), 40 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 9bbaad1..3f1552a 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -2,63 +2,45 @@ 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 { Image, Instagram, Linkedin } 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": "Projects", "href": "#projects" - }, - { - "name": "Contact", "href": "#contact" - }, - { - "name": "Hero", "href": "#hero" - }, - { - "name": "Features", "href": "#features" - }, - { - "name": "Metrics", "href": "#metrics" - }, - { - "name": "Testimonials", "href": "#testimonials" - } -]; + { name: "About", href: "#about" }, + { name: "Projects", href: "#projects" }, + { name: "Contact", href: "#contact" }, + { name: "Hero", href: "#hero" }, + { name: "Features", href: "#features" }, + { name: "Metrics", href: "#metrics" }, + { name: "Testimonials", href: "#testimonials" } + ]; return ( + logo="Studio Madrid" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=37zs7n" + ctaButton={{ text: "Book Consultation", href: "#contact" }} + navItems={navItems} + />
+ brand="Studio Madrid Interior Design" + copyright="© 2024 Studio Madrid. All rights reserved." + socialLinks={[ + { icon: "Instagram", href: "#" }, + { icon: "Linkedin", href: "#" }, + { icon: "Image", href: "#" } + ]} + />
); -} +} \ No newline at end of file -- 2.49.1