From c1bf52cc8d18008f3d402f9442602f35f82af1e4 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 12:04:07 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 6665f22..a2cbbf7 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Sun, 21 Jun 2026 12:04:10 +0000 Subject: [PATCH 2/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 92 ++++++++++++--------------------------- 1 file changed, 28 insertions(+), 64 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index a2cbbf7..04001f4 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,86 +7,50 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Programs", - "href": "#programs" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Success", - "href": "#testimonials" - }, - { - "name": "Hero", - "href": "#hero" - }, - { - "name": "Catalog", - "href": "#catalog" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Team", - "href": "#team" - } -]; + { name: "Programs", href: "#programs" }, + { name: "About", href: "#about" }, + { name: "Success", href: "#testimonials" }, + { name: "Hero", href: "#hero" }, + { name: "Catalog", href: "#catalog" }, + { name: "Metrics", href: "#metrics" }, + { name: "Team", href: "#team" } + ]; return ( + logo="Gabby's Academy" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=1xclkn" + ctaButton={{ + text: "Apply Now", href: "#contact"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 Gabby's Beauty Academy. All rights reserved." + links={[{ label: "Privacy", href: "#privacy" }, { label: "Terms", href: "#terms" }]} + />
); -- 2.49.1