diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 6f97241..50d3432 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,89 +7,51 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Services", - "href": "#services" - }, - { - "name": "Portfolio", - "href": "#portfolio" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Contact", - "href": "#contact" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Faq", - "href": "#faq" - }, - { - "name": "Metrics", - "href": "#metrics" - } -]; + { name: "Hero", href: "#hero" }, + { name: "Services", href: "#services" }, + { name: "Portfolio", href: "#portfolio" }, + { name: "About", href: "#about" }, + { name: "Metrics", href: "#metrics" }, + { name: "FAQ", href: "#faq" }, + { name: "Contact", href: "#contact" } + ]; return ( + logo="Prauha" + ctaButton={{ + text: "WhatsApp", href: "https://wa.me/919026089417"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 Prauha. All rights reserved." + imageSrc="http://img.b2bpic.net/free-photo/business-concept-with-graphic-holography_23-2149160928.jpg" + links={[]} + />
);