From 07ea177677acb79da0f30a18deed119642f1215f Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 21:00:41 +0000 Subject: [PATCH 1/3] Bob AI: Add booking page --- src/App.tsx | 2 ++ src/components/Layout.tsx | 4 ++- src/pages/BookingPage.tsx | 70 +++++++++++++++++++++++++++++++++++++++ src/routes.ts | 1 + 4 files changed, 76 insertions(+), 1 deletion(-) create mode 100644 src/pages/BookingPage.tsx diff --git a/src/App.tsx b/src/App.tsx index 33d15f9..d0091ca 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,11 +2,13 @@ import { Routes, Route } from 'react-router-dom'; import Layout from './components/Layout'; import HomePage from './pages/HomePage'; +import BookingPage from "@/pages/BookingPage"; export default function App() { return ( }> } /> + } /> ); diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 39f1219..07f2733 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -34,7 +34,9 @@ export default function Layout() { { "name": "Testimonials", "href": "#testimonials" - } + }, + { name: "Booking", href: "/booking" }, + ]; return ( diff --git a/src/pages/BookingPage.tsx b/src/pages/BookingPage.tsx new file mode 100644 index 0000000..4cb11ea --- /dev/null +++ b/src/pages/BookingPage.tsx @@ -0,0 +1,70 @@ +import { routes } from "@/routes"; +import NavbarCentered from "@/components/ui/NavbarCentered"; +import HeroSplit from "@/components/sections/hero/HeroSplit"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FaqSimple from "@/components/sections/faq/FaqSimple"; +import FooterMinimal from "@/components/sections/footer/FooterMinimal"; + +export default function BookingPage() { + return ( +
+ ({ name: r.label, href: r.path }))} + ctaButton={{ text: "Book Now", href: "/booking" }} + /> + +
+ + + + + +
+ + +
+ ); +} \ No newline at end of file diff --git a/src/routes.ts b/src/routes.ts index 362ecb5..92323b0 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -6,4 +6,5 @@ export interface Route { export const routes: Route[] = [ { path: '/', label: 'Home', pageFile: 'HomePage' }, + { path: '/booking', label: 'Booking', pageFile: 'BookingPage' }, ]; -- 2.49.1 From ebae2d609637b36c1aaee48f153805bafbeb3426 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 21:01:18 +0000 Subject: [PATCH 2/3] Bob AI: Populate src/pages/BookingPage.tsx (snippet builder, 3 sections) --- src/pages/BookingPage.tsx | 88 ++++++++++----------------------------- 1 file changed, 23 insertions(+), 65 deletions(-) diff --git a/src/pages/BookingPage.tsx b/src/pages/BookingPage.tsx index 4cb11ea..224c0c2 100644 --- a/src/pages/BookingPage.tsx +++ b/src/pages/BookingPage.tsx @@ -1,70 +1,28 @@ -import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; -import HeroSplit from "@/components/sections/hero/HeroSplit"; +import Button from "@/components/ui/Button"; +import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import ScrollReveal from "@/components/ui/ScrollReveal"; import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; -import FaqSimple from "@/components/sections/faq/FaqSimple"; -import FooterMinimal from "@/components/sections/footer/FooterMinimal"; export default function BookingPage() { return ( -
- ({ name: r.label, href: r.path }))} - ctaButton={{ text: "Book Now", href: "/booking" }} - /> - -
- - - - - -
- - -
+ <> +

Book Your Visit

+
+

Our Experts

Elena M.

Master Stylist

+
Sarah P.

Color Specialist

+
Julia R.

Skincare Expert

+
Alice T.

Massage Therapist

+
Ben K.

Nail Technician

+ ); -} \ No newline at end of file +} -- 2.49.1 From 3a91b04a461ee4d48b6c23dd3fa3ac568436545a Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 15 Jun 2026 21:02:17 +0000 Subject: [PATCH 3/3] Bob AI: fix build errors (attempt 1) --- src/pages/BookingPage.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/BookingPage.tsx b/src/pages/BookingPage.tsx index 224c0c2..b0dbd4a 100644 --- a/src/pages/BookingPage.tsx +++ b/src/pages/BookingPage.tsx @@ -8,7 +8,7 @@ import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; export default function BookingPage() { return ( <> -

Book Your Visit

+

Book Your Visit

-

Our Experts

Elena M.

Master Stylist

+

Our Experts

Elena M.

Master Stylist

Sarah P.

Color Specialist

Julia R.

Skincare Expert

Alice T.

Massage Therapist

Ben K.

Nail Technician

); -} +} \ No newline at end of file -- 2.49.1