From a33b4c9520e4f736e6adc317f4e758577be94b65 Mon Sep 17 00:00:00 2001 From: Chandler Copeland Date: Thu, 19 Mar 2026 15:02:19 -0600 Subject: [PATCH] fix(02-01): restore TestimonialsSection in page.tsx section order MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add TestimonialsSection import and render between HeroSection and ListingsPlaceholder - Correct section order: SiteNav → HeroSection → TestimonialsSection → ListingsPlaceholder → ContactSection → SiteFooter --- teressa-copeland-homes/src/app/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/teressa-copeland-homes/src/app/page.tsx b/teressa-copeland-homes/src/app/page.tsx index ceab68f..1afdaf7 100644 --- a/teressa-copeland-homes/src/app/page.tsx +++ b/teressa-copeland-homes/src/app/page.tsx @@ -1,5 +1,6 @@ import SiteNav from './_components/SiteNav'; import HeroSection from './_components/HeroSection'; +import TestimonialsSection from './_components/TestimonialsSection'; import ListingsPlaceholder from './_components/ListingsPlaceholder'; import { ContactSection } from './_components/ContactSection'; import SiteFooter from './_components/SiteFooter'; @@ -10,7 +11,7 @@ export default function HomePage() {
- {/* TestimonialsSection — added in Task 2 */} +