From 664f304cb89458b9cd3286f4110736a89c1a55ad Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 7 Jun 2026 00:20:08 +0000 Subject: [PATCH 1/2] Add src/app/booking/page.tsx --- src/app/booking/page.tsx | 81 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 src/app/booking/page.tsx diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx new file mode 100644 index 0000000..6b47985 --- /dev/null +++ b/src/app/booking/page.tsx @@ -0,0 +1,81 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ContactText from "@/components/sections/contact/ContactText"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function BookingPage() { + const navItems = [ + { name: "Our Process", id: "about" }, + { name: "Services", id: "services" }, + { name: "Testimonials", id: "testimonials" }, + { name: "Contact", id: "contact" }, + { name: "Book Appointment", href: "/booking" } + ]; + + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 236ed30fb8bb629e66c2f67dd3fc94c30235d884 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 7 Jun 2026 00:20:09 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d9a4450..13d2620 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -44,7 +44,7 @@ export default function BusinessCoachTemplatePage() { tag="Luxury Design & Build" tagIcon={Sparkles} title="Crafting Bespoke Living Spaces, From Vision to Reality" - description="We seamlessly integrate design, build, and project management to deliver unparalleled new builds, renovations, kitchens, and bathrooms. Your dream home, meticulously realized." + description="We seamlessly integrate design, build, and project management, specializing in transformative luxury renovations and bespoke new builds. Your dream home, meticulously realized." mediaItems={[ { imageSrc: "http://img.b2bpic.net/free-photo/modern-living-room-with-blue-accent-wall_23-2151995376.jpg", imageAlt: "Luxury living room with modern design" }, { imageSrc: "http://img.b2bpic.net/free-photo/image-engineering-objects-workplace-top-view-construction-concept-engineering-tools-vintage-tone-retro-filter-effect-soft-focus-selective-focus_1418-470.jpg", imageAlt: "Architectural drawing or sophisticated home exterior" }, @@ -60,35 +60,35 @@ export default function BusinessCoachTemplatePage() { ); -} \ No newline at end of file +} -- 2.49.1