From 1bd8ae885d82ce7974ea4c3c0f2afed55c77e40d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 01:32:08 +0000 Subject: [PATCH] Add src/app/trailer-rentals/page.tsx --- src/app/trailer-rentals/page.tsx | 331 +++++++++++++++++++++++++++++++ 1 file changed, 331 insertions(+) create mode 100644 src/app/trailer-rentals/page.tsx diff --git a/src/app/trailer-rentals/page.tsx b/src/app/trailer-rentals/page.tsx new file mode 100644 index 0000000..8c78bde --- /dev/null +++ b/src/app/trailer-rentals/page.tsx @@ -0,0 +1,331 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FaqBase from '@/components/sections/faq/FaqBase'; +import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; +import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; +import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import { Calendar, Clock, Star, Wrench, Package, Truck } from "lucide-react"; + +export default function TrailerRentalsPage() { + return ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ ); +} -- 2.49.1