Update src/app/page.tsx
This commit is contained in:
@@ -2,16 +2,16 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
||||
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||
import { ShieldCheck, History, TreeDeciduous, Users, CheckCircle, Award } from "lucide-react";
|
||||
import { ShieldCheck, History, TreeDeciduous, Users, CheckCircle, Award, Facebook, Instagram, Twitter } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -111,40 +111,46 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitText
|
||||
sideTitle="Answers to Your Arborist Questions"
|
||||
<FaqBase
|
||||
title="Answers to Your Arborist Questions"
|
||||
description="We make tree care simple, safe, and professional."
|
||||
faqsAnimation="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{ id: "1", title: "What makes you different?", content: "We combine local expertise, ISA certification, and top-of-the-line equipment for safe and reliable service." },
|
||||
{ id: "2", title: "Do you offer free quotes?", content: "Always. We provide on-site assessments to ensure accurate, no-obligation pricing for our Oshkosh clients." },
|
||||
{ id: "3", title: "Is emergency service available?", content: "We prioritize emergency tree services for storm damage, available as soon as possible." }
|
||||
]}
|
||||
faqsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Get in Touch"
|
||||
<ContactSplitForm
|
||||
title="Book Your Professional Assessment"
|
||||
description="Ready to improve your property's safety and value? Contact our team in Oshkosh today."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={true}
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name" },
|
||||
{ name: "email", type: "email", placeholder: "Your Email" }
|
||||
]}
|
||||
mediaPosition="left"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/professional-arborist-working_23-2148767945.jpg"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
<FooterCard
|
||||
logoText="Oshkosh Green Pros"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/lush-garden-background_23-2148767950.jpg"
|
||||
columns={[
|
||||
{ title: "Services", items: [{ label: "Removal", href: "#features" }, { label: "Maintenance", href: "#features" }] },
|
||||
{ title: "Company", items: [{ label: "About Us", href: "#about" }, { label: "Contact", href: "#contact" }] }
|
||||
copyrightText="© 2025 | Oshkosh Green Pros"
|
||||
socialLinks={[
|
||||
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
|
||||
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
||||
{ icon: Twitter, href: "#", ariaLabel: "Twitter" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user