diff --git a/src/app/page.tsx b/src/app/page.tsx index 0966950..a539d06 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,12 +4,14 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import AboutMetric from '@/components/sections/about/AboutMetric'; import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; import FooterMedia from '@/components/sections/footer/FooterMedia'; import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import { Award, CheckCircle, ShieldCheck, Zap, AlertTriangle, Circle } from "lucide-react"; export default function LandingPage() { @@ -34,6 +36,8 @@ export default function LandingPage() { name: "Home", id: "hero"}, { name: "Services", id: "features"}, + { + name: "Testimonials", id: "testimonials"}, { name: "Contact", id: "contact"}, ]} @@ -46,7 +50,7 @@ export default function LandingPage() { background={{ variant: "downward-rays-static"}} logoText="Ray Tree Service" - description="Professional tree care including trimming, removal, and general cleanup. We focus on safe, clean, professional work for your property. Call us today: +1 (951) 425-2355." + description="Professional tree care and removal services to keep your landscape healthy, safe, and beautiful. Expert certified arborists serving the community with care." buttons={[ { text: "Get a Free Quote", href: "#contact"}, @@ -84,20 +88,20 @@ export default function LandingPage() { useInvertedBackground={false} features={[ { - title: "Tree Trimming", description: "Expert pruning to keep your trees healthy, strong, and growing properly.", imageSrc: "http://img.b2bpic.net/free-photo/man-trimming-bough-brush-guy-works-backyard_1157-41447.jpg", buttonIcon: Zap, + title: "Expert Pruning", description: "Keep your trees healthy and growing strong with our professional trimming techniques.", imageSrc: "http://img.b2bpic.net/free-photo/man-trimming-bough-brush-guy-works-backyard_1157-41447.jpg", buttonIcon: Zap, }, { - title: "Tree Removal", description: "Safe, precise removal of hazardous or unwanted trees, performed by our professional team.", imageSrc: "http://img.b2bpic.net/free-photo/carpenter-working-sawmill-wood-manufacture_1303-22900.jpg", buttonIcon: ShieldCheck, + title: "Tree Removal", description: "Safe, efficient, and precise removal of hazardous or unwanted trees by expert arborists.", imageSrc: "http://img.b2bpic.net/free-photo/carpenter-working-sawmill-wood-manufacture_1303-22900.jpg", buttonIcon: ShieldCheck, }, { - title: "General Cleanup", description: "Thorough property cleanup including debris removal for a clean and tidy landscape.", imageSrc: "http://img.b2bpic.net/free-photo/man-with-chainsaw-cuts-tree_169016-1835.jpg", buttonIcon: Circle, + title: "Stump Grinding", description: "Remove unsightly stumps quickly, reclaiming your yard space for better landscaping.", imageSrc: "http://img.b2bpic.net/free-photo/man-with-chainsaw-cuts-tree_169016-1835.jpg", buttonIcon: Circle, }, { - title: "Safety First", description: "We emphasize safe, professional, and clean work practices on every single project.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-japanese-garden_23-2149359695.jpg", buttonIcon: AlertTriangle, + title: "Storm Cleanup", description: "24/7 emergency response for fallen or dangerous storm-damaged trees and debris.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-japanese-garden_23-2149359695.jpg", buttonIcon: AlertTriangle, }, ]} title="Our Professional Services" - description="Comprehensive tree care and cleanup solutions performed by professional arborists focused on safety and quality." + description="Comprehensive tree care solutions designed for residential and commercial needs, performed with precision and safety." /> @@ -142,6 +146,51 @@ export default function LandingPage() { /> +
+ +
+ +
+ +
+
@@ -166,13 +215,15 @@ export default function LandingPage() { { label: "Removal", href: "#features"}, { - label: "General Cleanup", href: "#features"}, + label: "Stump Grinding", href: "#features"}, ], }, { title: "Company", items: [ { label: "About Us", href: "#"}, + { + label: "FAQs", href: "#faq"}, { label: "Contact", href: "#contact"}, ], @@ -191,4 +242,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}