From e1f03401a8aa0939d0ace32a23d6890f958d0dd2 Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Sun, 30 Aug 2026 09:10:18 -0700 Subject: [PATCH] feat(engagement): add Interactive Custom Studio Mood Board, 5-Star Client Reviews showcase, and smart booking prefill --- src/app/page.tsx | 6 +- src/components/BookingForm.tsx | 39 ++- src/components/Header.tsx | 68 +++- src/components/MoodBoardEstimator.tsx | 464 +++++++++++++++++++++++++ src/components/TestimonialsSection.tsx | 163 +++++++++ 5 files changed, 719 insertions(+), 21 deletions(-) create mode 100644 src/components/MoodBoardEstimator.tsx create mode 100644 src/components/TestimonialsSection.tsx diff --git a/src/app/page.tsx b/src/app/page.tsx index 81c406e..d7fbdaa 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,9 +3,11 @@ import React, { useEffect } from 'react'; import Header from '@/components/Header'; import Hero from '@/components/Hero'; -import PillarsSection from '@/components/PillarsSection'; import PortfolioGallery from '@/components/PortfolioGallery'; +import MoodBoardEstimator from '@/components/MoodBoardEstimator'; +import PillarsSection from '@/components/PillarsSection'; import ServicesSection from '@/components/ServicesSection'; +import TestimonialsSection from '@/components/TestimonialsSection'; import AboutSection from '@/components/AboutSection'; import BookingForm from '@/components/BookingForm'; import Footer from '@/components/Footer'; @@ -30,8 +32,10 @@ export default function Home() {
+ +