From 1d5da42c24e8fab21eab442f630f794d217f07ce Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 05:14:11 +0000 Subject: [PATCH 1/3] Update src/app/about/page.tsx --- src/app/about/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 8a66f9a..85d3bb5 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -39,6 +39,7 @@ export default function LandingPage() { name: "FAQ", id: "/faq"}, { name: "Contact", id: "/contact"}, + { name: "New Layout", id: "/new-layout" } ]} button={{ text: "Get Free Estimate", href: "/contact"}} -- 2.49.1 From 124b599501627fdef39034ad4f9433eb69b5d458 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 05:14:12 +0000 Subject: [PATCH 2/3] Add src/app/new-layout/page.tsx --- src/app/new-layout/page.tsx | 166 ++++++++++++++++++++++++++++++++++++ 1 file changed, 166 insertions(+) create mode 100644 src/app/new-layout/page.tsx diff --git a/src/app/new-layout/page.tsx b/src/app/new-layout/page.tsx new file mode 100644 index 0000000..6adc23d --- /dev/null +++ b/src/app/new-layout/page.tsx @@ -0,0 +1,166 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import HeroBillboard from '@/components/sections/hero/HeroBillboard'; +import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; +import HeroLogo from '@/components/sections/hero/HeroLogo'; +import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { CheckCircle } from "lucide-react"; + +export default function NewLayoutPage() { + return ( + + + + + + +
+ +
+ + + +
+ +
+ +
+ +
+ + +
+
+ ); +} -- 2.49.1 From cbac455af8c9dcb38330dce5ad2f6cd8bc770637 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 05:14:12 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index dd8f725..df42e86 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -44,6 +44,7 @@ export default function LandingPage() { name: "FAQ", id: "/faq"}, { name: "Contact", id: "/contact"}, + { name: "New Layout", id: "/new-layout" } ]} button={{ text: "Get Free Estimate", href: "/contact"}} @@ -146,7 +147,7 @@ export default function LandingPage() { { id: "4", name: "David K.", date: "February 2024", title: "Best in Milledgeville!", quote: "I've used other services, but Trash Man Shawty is by far the best in Milledgeville. They are reliable, quick, and always go above and beyond. My go-to for all junk removal.", tag: "Local Business Owner", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-man-with-blue-shirt_23-2148548056.jpg", avatarAlt: "David K. avatar"}, { - id: "5", name: "Jessica L.", date: "January 2024", title: "Highly Recommend Their Service", quote: "They were able to accommodate my last-minute request and were incredibly thorough. The pricing was very reasonable for the quality of work. Truly impressed!", tag: "Homeowner", avatarSrc: "http://img.b2bpic.net/free-photo/cheerful-young-caucasian-female-wearing-her-red-hair-bun-laughing-out-loud_273609-9260.jpg", avatarAlt: "Jessica L. avatar"}, + id: "5", name: "Jessica L.", date: "January 2024", title: "Highly Recommend Their Service", quote: "They were able to accommodate my last-minute request and were incredibly thorough. The pricing was very reasonable for the quality of work. Truly impressed!", tag: "Homeowner", avatarSrc: "http://img.b2bpic.net/free-photo/cheerful-young-caucasian-female-wearing-her-red-hair-bun-laughing-out-loud_273609-9260.jpg", imageAlt: "Jessica L. avatar"}, ]} title="What Our Customers Say" description="See why homeowners and businesses in Milledgeville trust Trash Man Shawty for their junk removal needs." -- 2.49.1