From a404c47d635cc1e59b3782c831079bd640db33be Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 23:23:22 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 6f97241..ad63488 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -89,6 +89,10 @@ export default function Layout() { ]} copyright="© 2024 Prauha. All rights reserved." imageSrc="http://img.b2bpic.net/free-photo/business-concept-with-graphic-holography_23-2149160928.jpg" + links={[ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + ]} /> -- 2.49.1 From 966f525f908f4df6b9504284ee8bee6e1ff7b9fc Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 15 Jun 2026 23:23:26 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 100 +++++++++++--------------------------- 1 file changed, 29 insertions(+), 71 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index ad63488..50d3432 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,93 +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={[]} + />
); -- 2.49.1