Merge version_1 into main #2
357
src/app/page.tsx
357
src/app/page.tsx
@@ -30,110 +30,47 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "services",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Erie Home"
|
||||
button={{ text: "Contact", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Erie Home – Portland’s Premier Roofing & Home Experts"
|
||||
description="Free In-Home Estimates | Special Discounts Available. Trusted by Portland homeowners for over 50 years of excellence."
|
||||
kpis={[
|
||||
{
|
||||
value: "50+",
|
||||
label: "Years Experience",
|
||||
},
|
||||
{
|
||||
value: "4.5/5",
|
||||
label: "Customer Rating",
|
||||
},
|
||||
{
|
||||
value: "100%",
|
||||
label: "Satisfaction",
|
||||
},
|
||||
{ value: "50+", label: "Years Experience" },
|
||||
{ value: "4.5/5", label: "Customer Rating" },
|
||||
{ value: "100%", label: "Satisfaction" },
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
{
|
||||
text: "Request Your Free Estimate",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
text: "View Our Services",
|
||||
href: "#services",
|
||||
},
|
||||
{ text: "Request Your Free Estimate", href: "#contact" },
|
||||
{ text: "View Our Services", href: "#services" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-roofers-working-together-with-helmets_23-2149343707.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-roofers-working-together-with-helmets_23-2149343707.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-happy-people-chatting_23-2149152928.jpg",
|
||||
alt: "Client 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-portrait-beautiful-young-woman-giving-thumbs-up-standing-isolated-rosy_176532-7958.jpg",
|
||||
alt: "Client 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/tired-young-couple-are-sitting-floor-with-paint-brush-bucket-while-doing-repair-home_496169-751.jpg",
|
||||
alt: "Client 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/trendy-students-taking-photo_23-2147655789.jpg",
|
||||
alt: "Client 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-smiley-worker-wearing-vest_23-2149366622.jpg",
|
||||
alt: "Client 5",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-happy-people-chatting_23-2149152928.jpg", alt: "Client 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/front-view-portrait-beautiful-young-woman-giving-thumbs-up-standing-isolated-rosy_176532-7958.jpg", alt: "Client 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/tired-young-couple-are-sitting-floor-with-paint-brush-bucket-while-doing-repair-home_496169-751.jpg", alt: "Client 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/trendy-students-taking-photo_23-2147655789.jpg", alt: "Client 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/medium-shot-smiley-worker-wearing-vest_23-2149366622.jpg", alt: "Client 5" },
|
||||
]}
|
||||
avatarText="Trusted by 10,000+ Portland homeowners"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Licensed & Insured",
|
||||
icon: ShieldCheck,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "50 Years of Quality",
|
||||
icon: Award,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Top-Rated Service",
|
||||
icon: Star,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Portland Local Experts",
|
||||
icon: MapPin,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Satisfaction Guaranteed",
|
||||
icon: CheckCircle,
|
||||
},
|
||||
{ type: "text-icon", text: "Licensed & Insured", icon: ShieldCheck },
|
||||
{ type: "text-icon", text: "50 Years of Quality", icon: Award },
|
||||
{ type: "text-icon", text: "Top-Rated Service", icon: Star },
|
||||
{ type: "text-icon", text: "Portland Local Experts", icon: MapPin },
|
||||
{ type: "text-icon", text: "Satisfaction Guaranteed", icon: CheckCircle },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -143,21 +80,9 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
title="Trusted Home & Roofing Services for Over 50 Years"
|
||||
metrics={[
|
||||
{
|
||||
icon: Award,
|
||||
label: "Years in Business",
|
||||
value: "50+",
|
||||
},
|
||||
{
|
||||
icon: Users,
|
||||
label: "Satisfied Customers",
|
||||
value: "10,000+",
|
||||
},
|
||||
{
|
||||
icon: ShieldCheck,
|
||||
label: "Licensed & Insured",
|
||||
value: "100%",
|
||||
},
|
||||
{ icon: Award, label: "Years in Business", value: "50+" },
|
||||
{ icon: Users, label: "Satisfied Customers", value: "10,000+" },
|
||||
{ icon: ShieldCheck, label: "Licensed & Insured", value: "100%" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -170,72 +95,32 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Residential Roof Installation",
|
||||
description: "High-quality, durable roof installations tailored to your home’s architectural style.",
|
||||
icon: Home,
|
||||
title: "Residential Roof Installation", description: "High-quality, durable roof installations tailored to your home’s architectural style.", icon: Home,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/roof-pattern_1203-2594.jpg?_wi=1",
|
||||
imageAlt: "Roof Install",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/roof-pattern_1203-2594.jpg?_wi=2",
|
||||
imageAlt: "Roof Install",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-roofers-working-together-with-helmets_23-2149343707.jpg?_wi=2",
|
||||
imageAlt: "luxury residential roof installation portland",
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/roof-pattern_1203-2594.jpg", imageAlt: "Roof Install" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/roof-pattern_1203-2594.jpg", imageAlt: "Roof Install" },
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Roof Repair & Maintenance",
|
||||
description: "Expert diagnostics and repairs to extend the lifespan of your current roofing system.",
|
||||
icon: Wrench,
|
||||
title: "Roof Repair & Maintenance", description: "Expert diagnostics and repairs to extend the lifespan of your current roofing system.", icon: Wrench,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-with-protection-helmet_23-2149343636.jpg?_wi=1",
|
||||
imageAlt: "Roof Repair",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-with-protection-helmet_23-2149343636.jpg?_wi=2",
|
||||
imageAlt: "Roof Repair",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-engineers-table-building_23-2147704207.jpg?_wi=1",
|
||||
imageAlt: "professional roofing team on site",
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-with-protection-helmet_23-2149343636.jpg", imageAlt: "Roof Repair" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-with-protection-helmet_23-2149343636.jpg", imageAlt: "Roof Repair" },
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Gutter & Downspout Installation",
|
||||
description: "Protect your foundation with our custom-fit, heavy-duty gutter systems.",
|
||||
icon: ArrowDown,
|
||||
title: "Gutter & Downspout Installation", description: "Protect your foundation with our custom-fit, heavy-duty gutter systems.", icon: ArrowDown,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-skyscrapers-japan-business-district_23-2148836786.jpg?_wi=1",
|
||||
imageAlt: "Gutter Install",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-skyscrapers-japan-business-district_23-2148836786.jpg?_wi=2",
|
||||
imageAlt: "Gutter Install",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/roof-pattern_1203-2594.jpg?_wi=3",
|
||||
imageAlt: "residential roof installation detail",
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/modern-skyscrapers-japan-business-district_23-2148836786.jpg", imageAlt: "Gutter Install" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/modern-skyscrapers-japan-business-district_23-2148836786.jpg", imageAlt: "Gutter Install" },
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Exterior Maintenance & Upgrades",
|
||||
description: "Complete exterior solutions to enhance curb appeal and increase your home value.",
|
||||
icon: Paintbrush,
|
||||
title: "Exterior Maintenance & Upgrades", description: "Complete exterior solutions to enhance curb appeal and increase your home value.", icon: Paintbrush,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-spraying-powder-paint_23-2149714282.jpg?_wi=1",
|
||||
imageAlt: "Exterior Upgrade",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-spraying-powder-paint_23-2149714282.jpg?_wi=2",
|
||||
imageAlt: "Exterior Upgrade",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-with-protection-helmet_23-2149343636.jpg?_wi=3",
|
||||
imageAlt: "roof repair maintenance service",
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-spraying-powder-paint_23-2149714282.jpg", imageAlt: "Exterior Upgrade" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-spraying-powder-paint_23-2149714282.jpg", imageAlt: "Exterior Upgrade" },
|
||||
]
|
||||
},
|
||||
]}
|
||||
title="Our Services"
|
||||
@@ -249,41 +134,11 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah J.",
|
||||
handle: "Portland Homeowner",
|
||||
testimonial: "I am pleased with the work and I love the look of the roof. Professional team.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-happy-people-chatting_23-2149152928.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Mark D.",
|
||||
handle: "Portland Homeowner",
|
||||
testimonial: "The sales pitch was very pleasant and the whole process was smooth and easy.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-portrait-beautiful-young-woman-giving-thumbs-up-standing-isolated-rosy_176532-7958.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily R.",
|
||||
handle: "Portland Homeowner",
|
||||
testimonial: "Did a great job on clean up and the install. Very down to earth guys.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tired-young-couple-are-sitting-floor-with-paint-brush-bucket-while-doing-repair-home_496169-751.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "James T.",
|
||||
handle: "Portland Homeowner",
|
||||
testimonial: "Top-notch roofing quality. Highly recommend them to everyone in Portland.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/trendy-students-taking-photo_23-2147655789.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Lisa K.",
|
||||
handle: "Portland Homeowner",
|
||||
testimonial: "Exceeded my expectations on every level. Beautiful exterior work.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-worker-wearing-vest_23-2149366622.jpg",
|
||||
},
|
||||
{ id: "1", name: "Sarah J.", handle: "Portland Homeowner", testimonial: "I am pleased with the work and I love the look of the roof. Professional team.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-happy-people-chatting_23-2149152928.jpg" },
|
||||
{ id: "2", name: "Mark D.", handle: "Portland Homeowner", testimonial: "The sales pitch was very pleasant and the whole process was smooth and easy.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-portrait-beautiful-young-woman-giving-thumbs-up-standing-isolated-rosy_176532-7958.jpg" },
|
||||
{ id: "3", name: "Emily R.", handle: "Portland Homeowner", testimonial: "Did a great job on clean up and the install. Very down to earth guys.", imageSrc: "http://img.b2bpic.net/free-photo/tired-young-couple-are-sitting-floor-with-paint-brush-bucket-while-doing-repair-home_496169-751.jpg" },
|
||||
{ id: "4", name: "James T.", handle: "Portland Homeowner", testimonial: "Top-notch roofing quality. Highly recommend them to everyone in Portland.", imageSrc: "http://img.b2bpic.net/free-photo/trendy-students-taking-photo_23-2147655789.jpg" },
|
||||
{ id: "5", name: "Lisa K.", handle: "Portland Homeowner", testimonial: "Exceeded my expectations on every level. Beautiful exterior work.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-worker-wearing-vest_23-2149366622.jpg" },
|
||||
]}
|
||||
title="What Our Customers Say"
|
||||
description="With a 4.5/5 rating from over 750 happy Portland homeowners."
|
||||
@@ -297,60 +152,12 @@ export default function LandingPage() {
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
brand: "Project A",
|
||||
name: "Residential Roofing",
|
||||
price: "View Details",
|
||||
rating: 5,
|
||||
reviewCount: "50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/white-brown-concrete-building_250224-30.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
brand: "Project B",
|
||||
name: "Exterior Renovation",
|
||||
price: "View Details",
|
||||
rating: 5,
|
||||
reviewCount: "40",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-painting-walls-their-new-home-together_23-2149086832.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
brand: "Project C",
|
||||
name: "Gutter Install",
|
||||
price: "View Details",
|
||||
rating: 5,
|
||||
reviewCount: "35",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/long-shot-roofer-working-with-helmet_23-2149343709.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
brand: "Project D",
|
||||
name: "Roof Maintenance",
|
||||
price: "View Details",
|
||||
rating: 5,
|
||||
reviewCount: "25",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/presentation-concept-with-young-architects_23-2147702559.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
brand: "Project E",
|
||||
name: "New Shingle Roof",
|
||||
price: "View Details",
|
||||
rating: 5,
|
||||
reviewCount: "30",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-view-couple-standing-balcony_23-2147923064.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
brand: "Project F",
|
||||
name: "Exterior Upgrade",
|
||||
price: "View Details",
|
||||
rating: 5,
|
||||
reviewCount: "45",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/worker-building-roof-house_23-2148748850.jpg",
|
||||
},
|
||||
{ id: "p1", brand: "Project A", name: "Residential Roofing", price: "View Details", rating: 5, reviewCount: "50", imageSrc: "http://img.b2bpic.net/free-photo/white-brown-concrete-building_250224-30.jpg" },
|
||||
{ id: "p2", brand: "Project B", name: "Exterior Renovation", price: "View Details", rating: 5, reviewCount: "40", imageSrc: "http://img.b2bpic.net/free-photo/couple-painting-walls-their-new-home-together_23-2149086832.jpg" },
|
||||
{ id: "p3", brand: "Project C", name: "Gutter Install", price: "View Details", rating: 5, reviewCount: "35", imageSrc: "http://img.b2bpic.net/free-photo/long-shot-roofer-working-with-helmet_23-2149343709.jpg" },
|
||||
{ id: "p4", brand: "Project D", name: "Roof Maintenance", price: "View Details", rating: 5, reviewCount: "25", imageSrc: "http://img.b2bpic.net/free-photo/presentation-concept-with-young-architects_23-2147702559.jpg" },
|
||||
{ id: "p5", brand: "Project E", name: "New Shingle Roof", price: "View Details", rating: 5, reviewCount: "30", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-view-couple-standing-balcony_23-2147923064.jpg" },
|
||||
{ id: "p6", brand: "Project F", name: "Exterior Upgrade", price: "View Details", rating: 5, reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/worker-building-roof-house_23-2148748850.jpg" },
|
||||
]}
|
||||
title="Our Work Speaks for Itself"
|
||||
description="A glimpse into our recent roofing projects and exterior upgrades."
|
||||
@@ -360,13 +167,11 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Get in Touch"
|
||||
title="Request Your Free Estimate Today!"
|
||||
description="Take the first step toward a stronger home. Our Portland experts are ready to help."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/group-engineers-table-building_23-2147704207.jpg?_wi=2"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/group-engineers-table-building_23-2147704207.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -376,54 +181,24 @@ export default function LandingPage() {
|
||||
logoText="Erie Home"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Careers",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Roofing",
|
||||
href: "#services",
|
||||
},
|
||||
{
|
||||
label: "Gutters",
|
||||
href: "#services",
|
||||
},
|
||||
{
|
||||
label: "Maintenance",
|
||||
href: "#services",
|
||||
},
|
||||
title: "Services", items: [
|
||||
{ label: "Roofing", href: "#services" },
|
||||
{ label: "Gutters", href: "#services" },
|
||||
{ label: "Maintenance", href: "#services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "Schedule Estimate",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
label: "Support",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Portland Office",
|
||||
href: "#",
|
||||
},
|
||||
title: "Contact", items: [
|
||||
{ label: "Schedule Estimate", href: "#contact" },
|
||||
{ label: "Support", href: "#" },
|
||||
{ label: "Portland Office", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user