diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index b501db2..78abe05 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": "Home", "href": "#hero" - }, - { - "name": "About", "href": "#about" - }, - { - "name": "Collection", "href": "#collection" - }, - { - "name": "Contact", "href": "#contact" - }, - { - "name": "Gallery", "href": "#gallery" - }, - { - "name": "Social Proof", "href": "#social-proof" - }, - { - "name": "Testimonials", "href": "#testimonials" - } -]; + { "name": "Home", "href": "#hero" }, + { "name": "About", "href": "#about" }, + { "name": "Collection", "href": "#collection" }, + { "name": "Contact", "href": "#contact" }, + { "name": "Gallery", "href": "#gallery" }, + { "name": "Social Proof", "href": "#social-proof" }, + { "name": "Testimonials", "href": "#testimonials" } + ]; return ( + logo="Kiswa" + logoImageSrc="http://img.b2bpic.net/free-vector/jk-logo-monogram-design_23-2151060598.jpg" + ctaButton={{ text: "Shop Now", href: "#collection" }} + navItems={navItems} + />
+ brand="Kiswa" + copyright="© 2024 Kiswa. All rights reserved." + socialLinks={[ + { icon: "Instagram", href: "#" }, + { icon: "Twitter", href: "#" }, + { icon: "Linkedin", href: "#" }, + ]} + />
);