Update src/app/page.tsx
This commit is contained in:
213
src/app/page.tsx
213
src/app/page.tsx
@@ -32,22 +32,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#hero",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "#features",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
{ name: "Home", id: "#hero" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Services", id: "#features" },
|
||||
{ name: "Contact", id: "#contact" },
|
||||
]}
|
||||
brandName="GreenFall Experts"
|
||||
/>
|
||||
@@ -55,18 +43,11 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Professional Tree Felling & Arboriculture"
|
||||
description="Providing safe, efficient, and expert tree removal and maintenance services for residential and commercial properties. Your safety is our top priority."
|
||||
tag="Trusted Arborists"
|
||||
buttons={[
|
||||
{
|
||||
text: "Get a Free Quote",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Get a Free Quote", href: "#contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/blackboard-hanging-tree_23-2147770957.jpg"
|
||||
tagIcon={Leaf}
|
||||
imageAlt="professional tree felling service"
|
||||
@@ -94,31 +75,11 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Expert Tree Removal",
|
||||
description: "Safe, precision felling of trees of any size using advanced rigging techniques.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/carpenter-working-sawmill-wood-manufacture_1303-22877.jpg",
|
||||
},
|
||||
{
|
||||
title: "Stump Removal",
|
||||
description: "Full grinding services to ensure your property remains clear and ready for landscaping.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/carpenter-working-sawmill-wood-manufacture_1303-22905.jpg",
|
||||
},
|
||||
{
|
||||
title: "24/7 Emergency Service",
|
||||
description: "Rapid response for dangerous, storm-damaged trees that require immediate attention.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-girl-carrying-board_23-2148984060.jpg",
|
||||
},
|
||||
{
|
||||
title: "Precision Pruning",
|
||||
description: "Customized care to maintain health, structure, and aesthetic beauty of your canopy.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/asian-man-cutting-trees-using-electrical-chainsaw_1150-5896.jpg",
|
||||
},
|
||||
{
|
||||
title: "Tree Health Consults",
|
||||
description: "Professional assessments to detect disease, pests, and structural vulnerabilities.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/senior-man-working-field_329181-12481.jpg",
|
||||
},
|
||||
{ title: "Expert Tree Removal", description: "Safe, precision felling of trees of any size using advanced rigging techniques.", imageSrc: "http://img.b2bpic.net/free-photo/carpenter-working-sawmill-wood-manufacture_1303-22877.jpg" },
|
||||
{ title: "Stump Removal", description: "Full grinding services to ensure your property remains clear and ready for landscaping.", imageSrc: "http://img.b2bpic.net/free-photo/carpenter-working-sawmill-wood-manufacture_1303-22905.jpg" },
|
||||
{ title: "24/7 Emergency Service", description: "Rapid response for dangerous, storm-damaged trees that require immediate attention.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-girl-carrying-board_23-2148984060.jpg" },
|
||||
{ title: "Precision Pruning", description: "Customized care to maintain health, structure, and aesthetic beauty of your canopy.", imageSrc: "http://img.b2bpic.net/free-photo/asian-man-cutting-trees-using-electrical-chainsaw_1150-5896.jpg" },
|
||||
{ title: "Tree Health Consults", description: "Professional assessments to detect disease, pests, and structural vulnerabilities.", imageSrc: "http://img.b2bpic.net/free-photo/senior-man-working-field_329181-12481.jpg" },
|
||||
]}
|
||||
title="Comprehensive Tree Services"
|
||||
description="Complete solutions for tree maintenance and site management."
|
||||
@@ -132,27 +93,9 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "15+",
|
||||
title: "Years Experience",
|
||||
description: "Decades of professional service.",
|
||||
icon: Award,
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "2400+",
|
||||
title: "Successful Fells",
|
||||
description: "Projects completed safely.",
|
||||
icon: CheckCircle,
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "100%",
|
||||
title: "Safety Record",
|
||||
description: "Fully insured and certified.",
|
||||
icon: Shield,
|
||||
},
|
||||
{ id: "m1", value: "15+", title: "Years Experience", description: "Decades of professional service.", icon: Award },
|
||||
{ id: "m2", value: "2400+", title: "Successful Fells", description: "Projects completed safely.", icon: CheckCircle },
|
||||
{ id: "m3", value: "100%", title: "Safety Record", description: "Fully insured and certified.", icon: Shield },
|
||||
]}
|
||||
title="Safety by the Numbers"
|
||||
description="Our commitment to safety and quality is backed by our extensive experience."
|
||||
@@ -161,46 +104,17 @@ export default function LandingPage() {
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Standard Tree Removal",
|
||||
price: "Contact for quote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-farmer-working_23-2148568643.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Large Tree Health Consult",
|
||||
price: "Contact for quote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-campaigners-joining-forces-recycle-tidy-up-garbage_482257-89224.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Hazardous Limb Pruning",
|
||||
price: "Contact for quote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-getting-ready-climb-mountain_23-2149042788.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Brush & Site Clearing",
|
||||
price: "Contact for quote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-traveler-with-backpack-mountain-enjoying-with-nature-around-travel-lifestyle-concept_1150-1982.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Emergency Storm Cleanup",
|
||||
price: "Contact for quote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crop-hand-cutting-plant_23-2147768500.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Decorative Tree Shaping",
|
||||
price: "Contact for quote",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cropped-view-gardening-worker-wearing-protective-gloves-while-trimming-plants_344912-2285.jpg",
|
||||
},
|
||||
{ id: "p1", name: "Standard Tree Removal", price: "Contact for quote", imageSrc: "http://img.b2bpic.net/free-photo/woman-farmer-working_23-2148568643.jpg" },
|
||||
{ id: "p2", name: "Large Tree Health Consult", price: "Contact for quote", imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-campaigners-joining-forces-recycle-tidy-up-garbage_482257-89224.jpg" },
|
||||
{ id: "p3", name: "Hazardous Limb Pruning", price: "Contact for quote", imageSrc: "http://img.b2bpic.net/free-photo/man-getting-ready-climb-mountain_23-2149042788.jpg" },
|
||||
{ id: "p4", name: "Brush & Site Clearing", price: "Contact for quote", imageSrc: "http://img.b2bpic.net/free-photo/young-man-traveler-with-backpack-mountain-enjoying-with-nature-around-travel-lifestyle-concept_1150-1982.jpg" },
|
||||
{ id: "p5", name: "Emergency Storm Cleanup", price: "Contact for quote", imageSrc: "http://img.b2bpic.net/free-photo/crop-hand-cutting-plant_23-2147768500.jpg" },
|
||||
{ id: "p6", name: "Decorative Tree Shaping", price: "Contact for quote", imageSrc: "http://img.b2bpic.net/free-photo/cropped-view-gardening-worker-wearing-protective-gloves-while-trimming-plants_344912-2285.jpg" },
|
||||
]}
|
||||
title="Service Catalog"
|
||||
description="Specific tree maintenance packages tailored to your property needs."
|
||||
@@ -214,26 +128,11 @@ export default function LandingPage() {
|
||||
rating={5}
|
||||
author="Mark D., Residential Client"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/women-working-greenhouse-with-green-trees_1157-30882.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-asian-girl-showing-thumbs-up-looking-pleased-approve-smth-standing-white-background_1258-100067.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/mother-son-plating-together_23-2148943246.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/stylish-blond-woman-walking-street-park-summer-fashion_285396-8220.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-blonde-businesswoman-smiling-happy-standing-city_839833-14128.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/women-working-greenhouse-with-green-trees_1157-30882.jpg", alt: "Customer" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/smiling-asian-girl-showing-thumbs-up-looking-pleased-approve-smth-standing-white-background_1258-100067.jpg", alt: "Customer" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/mother-son-plating-together_23-2148943246.jpg", alt: "Customer" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/stylish-blond-woman-walking-street-park-summer-fashion_285396-8220.jpg", alt: "Customer" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-blonde-businesswoman-smiling-happy-standing-city_839833-14128.jpg", alt: "Customer" },
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
@@ -245,12 +144,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"International Society of Arboriculture",
|
||||
"Tree Care Industry Association",
|
||||
"Forest Stewardship Council",
|
||||
"Urban Forestry Council",
|
||||
"Certified Arborist Association",
|
||||
]}
|
||||
"International Society of Arboriculture", "Tree Care Industry Association", "Forest Stewardship Council", "Urban Forestry Council", "Certified Arborist Association"]}
|
||||
title="Certified & Partnered"
|
||||
description="We adhere to the highest industry standards."
|
||||
/>
|
||||
@@ -259,9 +153,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
tag="Get In Touch"
|
||||
title="Request a Free Estimate"
|
||||
description="Ready to get started? Fill out the form below to receive a free, no-obligation quote for your tree care needs."
|
||||
@@ -273,50 +165,23 @@ export default function LandingPage() {
|
||||
logoText="GreenFall Experts"
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Removal",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Stump Grinding",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Emergency",
|
||||
href: "#",
|
||||
},
|
||||
title: "Services", items: [
|
||||
{ label: "Removal", href: "#" },
|
||||
{ label: "Stump Grinding", href: "#" },
|
||||
{ label: "Emergency", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Careers",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Safety",
|
||||
href: "#",
|
||||
},
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "#" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "Safety", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user