Merge version_1 into main #2
315
src/app/page.tsx
315
src/app/page.tsx
@@ -29,26 +29,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Services",
|
||||
id: "services",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "gallery",
|
||||
},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "reviews",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Gallery", id: "gallery" },
|
||||
{ name: "Reviews", id: "reviews" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Stabile's Construction"
|
||||
/>
|
||||
@@ -56,22 +41,16 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboardSplit
|
||||
background="gradient-bars"
|
||||
background={{ variant: "gradient-bars" }}
|
||||
logoText="Stabile's Construction"
|
||||
description="Covington's Premier Renovation Experts. Commercial & Turn-Key Residential Renovations — Serving the Northshore Since 1993. 5.0 Google Rating | Licensed & Insured."
|
||||
buttons={[
|
||||
{
|
||||
text: "Get a Free Quote",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
text: "View Our Work",
|
||||
href: "#gallery",
|
||||
},
|
||||
{ text: "Get a Free Quote", href: "#contact" },
|
||||
{ text: "View Our Work", href: "#gallery" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
layoutOrder="default"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/matte-black-kitchen-cabinet-with-open-drawer-dark-aesthetic_169016-71177.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/matte-black-kitchen-cabinet-with-open-drawer-dark-aesthetic_169016-71177.jpg"
|
||||
imageAlt="Luxury high-end residential renovation"
|
||||
mediaAnimation="blur-reveal"
|
||||
/>
|
||||
@@ -83,86 +62,14 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
label: "Residential",
|
||||
title: "Turn-Key Residential",
|
||||
items: [
|
||||
"Complete Renovation",
|
||||
"Custom Design-Build",
|
||||
"Quality Craftsmanship",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
label: "Commercial",
|
||||
title: "Commercial Spaces",
|
||||
items: [
|
||||
"Retail Build-outs",
|
||||
"Office Modernization",
|
||||
"Full Scope Service",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
label: "Bathrooms",
|
||||
title: "Bathroom Remodels",
|
||||
items: [
|
||||
"Modern Vanity",
|
||||
"Tile & Stone Work",
|
||||
"Custom Shower Suites",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
label: "Kitchens",
|
||||
title: "Kitchen Remodels",
|
||||
items: [
|
||||
"Cabinetry Design",
|
||||
"Quartz & Granite",
|
||||
"Smart Appliances",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
label: "Outdoor",
|
||||
title: "Outdoor Spaces",
|
||||
items: [
|
||||
"Sunrooms & Porches",
|
||||
"Patio Covers",
|
||||
"Exterior Living",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
label: "Exterior",
|
||||
title: "Exterior Roofing",
|
||||
items: [
|
||||
"Premium Roofing",
|
||||
"Siding Replacement",
|
||||
"Curb Appeal",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "7",
|
||||
label: "Repair",
|
||||
title: "Structural Repairs",
|
||||
items: [
|
||||
"Water Damage Control",
|
||||
"Dry Rot Correction",
|
||||
"Foundation Care",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "8",
|
||||
label: "Finish",
|
||||
title: "Custom Finish Work",
|
||||
items: [
|
||||
"Detail Carpentry",
|
||||
"Trim & Molding",
|
||||
"Custom Millwork",
|
||||
],
|
||||
},
|
||||
{ id: "1", label: "Residential", title: "Turn-Key Residential", items: ["Complete Renovation", "Custom Design-Build", "Quality Craftsmanship"] },
|
||||
{ id: "2", label: "Commercial", title: "Commercial Spaces", items: ["Retail Build-outs", "Office Modernization", "Full Scope Service"] },
|
||||
{ id: "3", label: "Bathrooms", title: "Bathroom Remodels", items: ["Modern Vanity", "Tile & Stone Work", "Custom Shower Suites"] },
|
||||
{ id: "4", label: "Kitchens", title: "Kitchen Remodels", items: ["Cabinetry Design", "Quartz & Granite", "Smart Appliances"] },
|
||||
{ id: "5", label: "Outdoor", title: "Outdoor Spaces", items: ["Sunrooms & Porches", "Patio Covers", "Exterior Living"] },
|
||||
{ id: "6", label: "Exterior", title: "Exterior Roofing", items: ["Premium Roofing", "Siding Replacement", "Curb Appeal"] },
|
||||
{ id: "7", label: "Repair", title: "Structural Repairs", items: ["Water Damage Control", "Dry Rot Correction", "Foundation Care"] },
|
||||
{ id: "8", label: "Finish", title: "Custom Finish Work", items: ["Detail Carpentry", "Trim & Molding", "Custom Millwork"] },
|
||||
]}
|
||||
title="What We Build"
|
||||
description="From commercial spaces to custom luxury residential interiors, we provide turn-key precision for the Northshore area."
|
||||
@@ -173,15 +80,8 @@ export default function LandingPage() {
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "The Stabile Difference",
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-happy-old-man-with-white-helmet_23-2148269398.jpg",
|
||||
alt: "Frank Stabile and team on job site",
|
||||
},
|
||||
{ type: "text", content: "The Stabile Difference" },
|
||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/front-view-happy-old-man-with-white-helmet_23-2148269398.jpg", alt: "Frank Stabile and team on job site" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -193,42 +93,12 @@ export default function LandingPage() {
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Modern Master Bath",
|
||||
price: "Covington, LA",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/matte-black-kitchen-cabinet-with-open-drawer-dark-aesthetic_169016-71177.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Kitchen Renovation",
|
||||
price: "Northshore Project",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/matte-black-kitchen-cabinet-with-open-drawer-dark-aesthetic_169016-71177.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Commercial Office",
|
||||
price: "Covington, LA",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/matte-black-kitchen-cabinet-with-open-drawer-dark-aesthetic_169016-71177.jpg?_wi=4",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Custom Sunroom",
|
||||
price: "Northshore Project",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/matte-black-kitchen-cabinet-with-open-drawer-dark-aesthetic_169016-71177.jpg?_wi=5",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Exterior Facelift",
|
||||
price: "Covington, LA",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/matte-black-kitchen-cabinet-with-open-drawer-dark-aesthetic_169016-71177.jpg?_wi=6",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Custom Millwork",
|
||||
price: "Northshore Project",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/matte-black-kitchen-cabinet-with-open-drawer-dark-aesthetic_169016-71177.jpg?_wi=7",
|
||||
},
|
||||
{ id: "1", name: "Modern Master Bath", price: "Covington, LA", imageSrc: "http://img.b2bpic.net/free-photo/matte-black-kitchen-cabinet-with-open-drawer-dark-aesthetic_169016-71177.jpg" },
|
||||
{ id: "2", name: "Kitchen Renovation", price: "Northshore Project", imageSrc: "http://img.b2bpic.net/free-photo/matte-black-kitchen-cabinet-with-open-drawer-dark-aesthetic_169016-71177.jpg" },
|
||||
{ id: "3", name: "Commercial Office", price: "Covington, LA", imageSrc: "http://img.b2bpic.net/free-photo/matte-black-kitchen-cabinet-with-open-drawer-dark-aesthetic_169016-71177.jpg" },
|
||||
{ id: "4", name: "Custom Sunroom", price: "Northshore Project", imageSrc: "http://img.b2bpic.net/free-photo/matte-black-kitchen-cabinet-with-open-drawer-dark-aesthetic_169016-71177.jpg" },
|
||||
{ id: "5", name: "Exterior Facelift", price: "Covington, LA", imageSrc: "http://img.b2bpic.net/free-photo/matte-black-kitchen-cabinet-with-open-drawer-dark-aesthetic_169016-71177.jpg" },
|
||||
{ id: "6", name: "Custom Millwork", price: "Northshore Project", imageSrc: "http://img.b2bpic.net/free-photo/matte-black-kitchen-cabinet-with-open-drawer-dark-aesthetic_169016-71177.jpg" },
|
||||
]}
|
||||
title="Project Gallery"
|
||||
description="Explore our portfolio of Northshore renovation projects. Every detail matters."
|
||||
@@ -241,46 +111,11 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Suzie J. Rogers",
|
||||
handle: "@suzier",
|
||||
testimonial: "Perfection with attention to every little detail!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-businessman-writing-paper-pinned-corkboard-talking-phone-smiling_176420-6478.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Lily LaBiche",
|
||||
handle: "@lilylab",
|
||||
testimonial: "Solid craftsmanship is top notch.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-person-training-beginner-internship_23-2149335467.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Marlene Rouen",
|
||||
handle: "@mrouen",
|
||||
testimonial: "Finished job in less time than expected.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-engineer-architect-shaking-hands_23-2148233781.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Amanda Schopfer",
|
||||
handle: "@aschop",
|
||||
testimonial: "Excellent work in a timely manner.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-painting-walls-their-new-home-together_23-2149086834.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Carol Aikman",
|
||||
handle: "@caikman",
|
||||
testimonial: "Efficient, prompt, courteous.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-dentist-dentistry-concept-dental-treatment_169016-67131.jpg",
|
||||
},
|
||||
{ id: "1", name: "Suzie J. Rogers", handle: "@suzier", testimonial: "Perfection with attention to every little detail!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-businessman-writing-paper-pinned-corkboard-talking-phone-smiling_176420-6478.jpg" },
|
||||
{ id: "2", name: "Lily LaBiche", handle: "@lilylab", testimonial: "Solid craftsmanship is top notch.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/business-person-training-beginner-internship_23-2149335467.jpg" },
|
||||
{ id: "3", name: "Marlene Rouen", handle: "@mrouen", testimonial: "Finished job in less time than expected.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-engineer-architect-shaking-hands_23-2148233781.jpg" },
|
||||
{ id: "4", name: "Amanda Schopfer", handle: "@aschop", testimonial: "Excellent work in a timely manner.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/couple-painting-walls-their-new-home-together_23-2149086834.jpg" },
|
||||
{ id: "5", name: "Carol Aikman", handle: "@caikman", testimonial: "Efficient, prompt, courteous.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-dentist-dentistry-concept-dental-treatment_169016-67131.jpg" },
|
||||
]}
|
||||
showRating={true}
|
||||
title="What Our Clients Are Saying"
|
||||
@@ -294,39 +129,15 @@ export default function LandingPage() {
|
||||
title="Ready to Transform Your Space?"
|
||||
description="Get a free, no-obligation estimate. Most projects quoted within 24 hours. Limited slots available."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "phone",
|
||||
type: "tel",
|
||||
placeholder: "Your Phone",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Your Email",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "project",
|
||||
type: "text",
|
||||
placeholder: "Project Type",
|
||||
required: true,
|
||||
},
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "Your Phone", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Your Email", required: true },
|
||||
{ name: "project", type: "text", placeholder: "Project Type", required: true },
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Brief Project Description",
|
||||
required: true,
|
||||
}}
|
||||
textarea={{ name: "message", placeholder: "Brief Project Description", required: true }}
|
||||
mediaPosition="left"
|
||||
buttonText="Send My Request"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/matte-black-kitchen-cabinet-with-open-drawer-dark-aesthetic_169016-71177.jpg?_wi=8"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/matte-black-kitchen-cabinet-with-open-drawer-dark-aesthetic_169016-71177.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -334,57 +145,9 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Stabile's",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Services",
|
||||
href: "#services",
|
||||
},
|
||||
{
|
||||
label: "Portfolio",
|
||||
href: "#gallery",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Residential",
|
||||
href: "#services",
|
||||
},
|
||||
{
|
||||
label: "Commercial",
|
||||
href: "#services",
|
||||
},
|
||||
{
|
||||
label: "Remodeling",
|
||||
href: "#services",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "504-939-2805",
|
||||
href: "tel:5049392805",
|
||||
},
|
||||
{
|
||||
label: "19287 Slemmer Rd, Covington, LA",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Licensed & Insured",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Stabile's", items: [{ label: "About Us", href: "#about" }, { label: "Services", href: "#services" }, { label: "Portfolio", href: "#gallery" }] },
|
||||
{ title: "Services", items: [{ label: "Residential", href: "#services" }, { label: "Commercial", href: "#services" }, { label: "Remodeling", href: "#services" }] },
|
||||
{ title: "Contact", items: [{ label: "504-939-2805", href: "tel:5049392805" }, { label: "19287 Slemmer Rd, Covington, LA", href: "#" }, { label: "Licensed & Insured", href: "#" }] },
|
||||
]}
|
||||
logoText="Stabile's Construction, LLC"
|
||||
copyrightText="© 2025 Stabile's Construction, LLC | All Rights Reserved"
|
||||
|
||||
Reference in New Issue
Block a user