Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 929aaba84c | |||
| 7720397d07 | |||
| 2bd8d4ebc0 | |||
| aba32f87cd | |||
| adce84b9f0 | |||
| f09877e9e8 | |||
| bb273dcbc0 |
123
src/app/page.tsx
123
src/app/page.tsx
@@ -3,12 +3,12 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
|
||||
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import HeroCentered from '@/components/sections/hero/HeroCentered';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
import { Award, Gauge, Shield, ShieldCheck, TrendingDown, Zap } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
@@ -29,14 +29,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "Services", id: "services"},
|
||||
{
|
||||
name: "Testimonials", id: "testimonials"},
|
||||
{
|
||||
name: "Contact", id: "contact"},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="InsulationPro"
|
||||
/>
|
||||
@@ -44,43 +40,24 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "downward-rays-static"}}
|
||||
background={{ variant: "downward-rays-static" }}
|
||||
title="Reliable Insulation Solutions for Comfort & Efficiency"
|
||||
description="We specialize in high-quality insulation installation for homes and businesses to improve energy efficiency, comfort, and long-term cost savings."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Client 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/confident-happy-brunette-businesswoman-posing-studio_176420-29819.jpg", alt: "Client 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-positive-businesswoman_1098-3531.jpg", alt: "Client 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-father-smiling-taking-selfie-while-giving-thumbs-up_23-2148414933.jpg", alt: "Client 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-beautiful-young-woman-standing-posing-co-working-coffee-shop-interior-looking-camera-smiling_74855-9955.jpg", alt: "Client 5"},
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Client 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/confident-happy-brunette-businesswoman-posing-studio_176420-29819.jpg", alt: "Client 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-positive-businesswoman_1098-3531.jpg", alt: "Client 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/happy-father-smiling-taking-selfie-while-giving-thumbs-up_23-2148414933.jpg", alt: "Client 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/happy-beautiful-young-woman-standing-posing-co-working-coffee-shop-interior-looking-camera-smiling_74855-9955.jpg", alt: "Client 5" },
|
||||
]}
|
||||
avatarText="Trusted by 500+ Local Homeowners"
|
||||
buttons={[
|
||||
{
|
||||
text: "Free Estimate", href: "#contact"},
|
||||
]}
|
||||
buttons={[{ text: "Free Estimate", href: "#contact" }]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon", text: "Energy Efficient", icon: Zap,
|
||||
},
|
||||
{
|
||||
type: "text-icon", text: "Professional Installation", icon: ShieldCheck,
|
||||
},
|
||||
{
|
||||
type: "text-icon", text: "Cost Savings", icon: TrendingDown,
|
||||
},
|
||||
{
|
||||
type: "text-icon", text: "Indoor Comfort", icon: Gauge,
|
||||
},
|
||||
{
|
||||
type: "text-icon", text: "Licensed Experts", icon: Award,
|
||||
},
|
||||
{ type: "text-icon", text: "Energy Efficient", icon: Zap },
|
||||
{ type: "text-icon", text: "Professional Installation", icon: ShieldCheck },
|
||||
{ type: "text-icon", text: "Cost Savings", icon: TrendingDown },
|
||||
{ type: "text-icon", text: "Indoor Comfort", icon: Gauge },
|
||||
{ type: "text-icon", text: "Licensed Experts", icon: Award },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -99,62 +76,40 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardNine
|
||||
<FeatureCardMedia
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Attic Installation", description: "Premium attic insulation upgrades to maximize thermal performance.", phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/home-insurance-icons_23-2147502766.jpg?_wi=1", imageAlt: "Attic icon"},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/home-insurance-icons_23-2147502766.jpg?_wi=2", imageAlt: "Attic icon"}
|
||||
},
|
||||
{
|
||||
title: "Wall Insulation", description: "Effective insulation for new construction and retrofit projects.", phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/eco-friendly-recycling-concept_23-2148737673.jpg?_wi=1", imageAlt: "Wall icon"},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/eco-friendly-recycling-concept_23-2148737673.jpg?_wi=2", imageAlt: "Wall icon"}
|
||||
},
|
||||
{
|
||||
title: "Basement & Crawl Space", description: "Sealing and insulating vulnerable areas to prevent energy loss.", phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/illustration-house-insurance_53876-6173.jpg?_wi=1", imageAlt: "Basement icon"},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/illustration-house-insurance_53876-6173.jpg?_wi=2", imageAlt: "Basement icon"}
|
||||
},
|
||||
]}
|
||||
showStepNumbers={false}
|
||||
title="Our Services"
|
||||
description="Comprehensive insulation solutions tailored to your property's specific energy needs."
|
||||
features={[
|
||||
{ id: "1", title: "Attic Installation", description: "Premium attic insulation upgrades to maximize thermal performance.", tag: "Top Tier", imageSrc: "http://img.b2bpic.net/free-vector/home-insurance-icons_23-2147502766.jpg?_wi=1" },
|
||||
{ id: "2", title: "Wall Insulation", description: "Effective insulation for new construction and retrofit projects.", tag: "Durable", imageSrc: "http://img.b2bpic.net/free-photo/eco-friendly-recycling-concept_23-2148737673.jpg?_wi=1" },
|
||||
{ id: "3", title: "Basement & Crawl Space", description: "Sealing and insulating vulnerable areas to prevent energy loss.", tag: "Efficiency", imageSrc: "http://img.b2bpic.net/free-vector/illustration-house-insurance_53876-6173.jpg?_wi=1" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTen
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", title: "Great Results", quote: "My energy bills dropped significantly after the attic upgrade.", name: "Sarah J.", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg"},
|
||||
{
|
||||
id: "2", title: "Highly Recommend", quote: "Professional, clean, and delivered as promised.", name: "Michael C.", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/confident-happy-brunette-businesswoman-posing-studio_176420-29819.jpg"},
|
||||
{
|
||||
id: "3", title: "Excellent Service", quote: "The team was very helpful in suggesting the right material.", name: "Emily R.", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/close-up-positive-businesswoman_1098-3531.jpg"},
|
||||
{
|
||||
id: "4", title: "Significant Comfort", quote: "Our home is finally comfortable during the winter months.", name: "David K.", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/happy-father-smiling-taking-selfie-while-giving-thumbs-up_23-2148414933.jpg"},
|
||||
{
|
||||
id: "5", title: "Worth It", quote: "Highly efficient process, very happy with the results.", name: "Lisa M.", role: "Homeowner", imageSrc: "http://img.b2bpic.net/free-photo/happy-beautiful-young-woman-standing-posing-co-working-coffee-shop-interior-looking-camera-smiling_74855-9955.jpg"},
|
||||
]}
|
||||
<TestimonialCardThirteen
|
||||
showRating={true}
|
||||
animationType="slide-up"
|
||||
title="What Our Clients Say"
|
||||
description="Hear from local homeowners who transformed their property comfort with our services."
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{ id: "1", name: "", handle: "Homeowner", testimonial: " ", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg" },
|
||||
{ id: "2", name: "Young Stach", handle: "Homeowner", testimonial: "I had my walls installed and my attic. I have never had such a nice gentlemen do work for me. they took time to explain all aspects of the job. Dan and his team all work great as a team. They cleaned up and vacuumed at the end of each day. If I need more work done at my house I will call Miles Attic Insulation.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/confident-happy-brunette-businesswoman-posing-studio_176420-29819.jpg" },
|
||||
{ id: "3", name: "Emily R.", handle: "Homeowner", testimonial: "The team was very helpful in suggesting the right material.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-positive-businesswoman_1098-3531.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars"}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
tag="Contact Us"
|
||||
title="Get a Free Estimate Today"
|
||||
description="Ready to improve your comfort and lower your energy bills? Contact us for a free consultation."
|
||||
@@ -166,10 +121,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="InsulationPro"
|
||||
leftLink={{
|
||||
text: "Privacy Policy", href: "#"}}
|
||||
rightLink={{
|
||||
text: "Terms of Service", href: "#"}}
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "Terms of Service", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user