Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e6125a9b15 | |||
| 0659d9dd81 | |||
| 92d7aa9481 | |||
| f22dc536d4 | |||
| 5109b908da |
@@ -3,15 +3,15 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||||
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
|
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
|
||||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||||
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
|
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
|
||||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||||
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||||
import { Flame, MapPin, Settings, Mail } from "lucide-react";
|
import { Flame, MapPin, Settings, Mail, Facebook, Instagram, Twitter } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -114,15 +114,17 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
<div id="faq" data-section="faq">
|
||||||
<FaqSplitText
|
<FaqSplitMedia
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
sideTitle="Common Questions"
|
title="Common Questions"
|
||||||
sideDescription="Answers to keep your home comfortable."
|
description="Answers to keep your home comfortable."
|
||||||
faqs={[
|
faqs={[
|
||||||
{ id: "f1", title: "Do you provide same-day service?", content: "Yes, we offer same-day appointments for urgent HVAC needs." },
|
{ id: "f1", title: "Do you provide same-day service?", content: "Yes, we offer same-day appointments for urgent HVAC needs." },
|
||||||
{ id: "f2", title: "What brands do you service?", content: "We service all major brands including Lennox, Carrier, and others." }
|
{ id: "f2", title: "What brands do you service?", content: "We service all major brands including Lennox, Carrier, and others." }
|
||||||
]}
|
]}
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
|
textboxLayout="split"
|
||||||
|
imageSrc="https://images.unsplash.com/photo-1621905251189-08b45d6a268e?q=80&w=1200&auto=format&fit=crop"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -138,11 +140,12 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBase
|
<FooterCard
|
||||||
logoText="SoCal Green"
|
logoText="SoCal Green"
|
||||||
columns={[
|
socialLinks={[
|
||||||
{ title: "Services", items: [{ label: "AC Repair", href: "#services" }, { label: "Heating", href: "#services" }] },
|
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
|
||||||
{ title: "Company", items: [{ label: "About", href: "#why" }, { label: "Contact", href: "#contact" }] }
|
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
||||||
|
{ icon: Twitter, href: "#", ariaLabel: "Twitter" }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user