Merge version_2 into main #5
@@ -6,7 +6,7 @@ import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import { Clock, Phone } from "lucide-react";
|
||||
import { Clock, Phone, MapPin } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -23,120 +23,81 @@ export default function LandingPage() {
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Shop",
|
||||
id: "/shop",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Island Plumbing"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Reliable Brooklyn Plumbing, Heating & Cooling"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
tag="Contact Us"
|
||||
title="Need Help Now?"
|
||||
description="Call us 24/7 for emergency support or visit our Brooklyn showroom."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call (516) 514-1013",
|
||||
href: "tel:+15165141013",
|
||||
},
|
||||
{
|
||||
text: "Get Directions",
|
||||
href: "https://maps.google.com",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "radial-gradient"}}
|
||||
tag="Contact Us"
|
||||
title="Need Help Now?"
|
||||
description="We are open 24/7 to serve Brooklyn. Call us anytime or visit our showroom."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call (516) 514-1013", href: "tel:+15165141013"},
|
||||
{
|
||||
text: "Get Directions", href: "https://maps.google.com/?q=2357+60th+St+Brooklyn+NY+11204"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<AboutMetric
|
||||
useInvertedBackground={false}
|
||||
title="Visit Our Showroom"
|
||||
metricsAnimation="slide-up"
|
||||
metrics={[
|
||||
{
|
||||
icon: Phone,
|
||||
label: "Sales Desk",
|
||||
value: "(516) 514-1013",
|
||||
},
|
||||
{
|
||||
icon: Clock,
|
||||
label: "Showroom Hours",
|
||||
value: "8am-6pm",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<AboutMetric
|
||||
useInvertedBackground={false}
|
||||
title="Visit Our Showroom"
|
||||
metricsAnimation="slide-up"
|
||||
metrics={[
|
||||
{
|
||||
icon: Phone,
|
||||
label: "Hotline", value: "(516) 514-1013"},
|
||||
{
|
||||
icon: Clock,
|
||||
label: "Hours", value: "24 Hours"},
|
||||
{
|
||||
icon: MapPin,
|
||||
label: "Address", value: "2357 60th St #216, Brooklyn, NY 11204"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/house-entrance-japan-building_23-2149301105.jpg?_wi=4"
|
||||
logoText="Island Plumbing"
|
||||
columns={[
|
||||
{
|
||||
title: "Store",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Hours",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Emergency Repair",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Contractor Account",
|
||||
href: "/contractor-accounts",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/house-entrance-japan-building_23-2149301105.jpg?_wi=4"
|
||||
logoText="Reliable Brooklyn Plumbing, Heating & Cooling"
|
||||
columns={[
|
||||
{
|
||||
title: "Store", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Hours: 24/7", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Emergency Repair", href: "/services" },
|
||||
{ label: "Contractor Account", href: "/contractor-accounts" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -33,7 +33,7 @@ export default function LandingPage() {
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Island Plumbing"
|
||||
brandName="Reliable Brooklyn Plumbing, Heating & Cooling"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -41,7 +41,7 @@ export default function LandingPage() {
|
||||
<HeroCentered
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Quality Plumbing & Heating Parts — Ready When You Need Them"
|
||||
description="Same-day pickup, expert advice, and dependable parts for contractors and homeowners in Brooklyn."
|
||||
description="Same-day pickup, expert advice, and dependable parts for contractors and homeowners in Brooklyn. 24/7 service available."
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/smiling-mid-adult-businessman-using-computer-while-working-office-desk_637285-6746.jpg", alt: "Client" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/happy-coworkers-holding-tablets-showing-thumbs-up-stairs_1262-20218.jpg", alt: "Client" },
|
||||
@@ -51,14 +51,14 @@ export default function LandingPage() {
|
||||
]}
|
||||
avatarText="34+ Trusted Reviews"
|
||||
buttons={[
|
||||
{ text: "Call Now — 24/7 Support", href: "tel:+15165141013" },
|
||||
{ text: "Call Now (516) 514-1013", href: "tel:+15165141013" },
|
||||
{ text: "Shop Parts Online", href: "/shop" },
|
||||
]}
|
||||
marqueeItems={[
|
||||
{ type: "text-icon", text: "Quality Assured", icon: CheckCircle },
|
||||
{ type: "text-icon", text: "Contractor Rates", icon: DollarSign },
|
||||
{ type: "text-icon", text: "Same-Day Pickup", icon: Zap },
|
||||
{ type: "text-icon", text: "Expert Support", icon: Headphones },
|
||||
{ type: "text-icon", text: "24/7 Service", icon: Headphones },
|
||||
{ type: "text-icon", text: "Brooklyn Trusted", icon: MapPin },
|
||||
]}
|
||||
/>
|
||||
@@ -69,7 +69,8 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
title="Local Supply. Professional Support."
|
||||
description={[
|
||||
"For over three decades, Island Plumbing & Heating Supply has been Brooklyn's go-to source for quality supplies. Our family-owned business combines old-school values with modern expertise to keep Brooklyn flowing.", "Extensive inventory of name-brand supplies, knowledgeable staff, and competitive pricing for contractors and homeowners."]}
|
||||
"For over three decades, Reliable Brooklyn Plumbing, Heating & Cooling has been the go-to source for quality supplies. Located at 2357 60th St #216, Brooklyn, NY 11204, our family-owned business combines old-school values with modern expertise.", "Service Area: Brooklyn. Operating hours: Open 24 Hours. Contact us today: (516) 514-1013."
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -98,8 +99,8 @@ export default function LandingPage() {
|
||||
{ id: "4", name: "Nathan Craig", imageSrc: "http://img.b2bpic.net/free-photo/corporate-business-people_23-2148827022.jpg" },
|
||||
{ id: "5", name: "Amari Damian", imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-with-cleaning-equipment-living-room_329181-649.jpg" },
|
||||
]}
|
||||
cardTitle="What Our Customers Say"
|
||||
cardTag="Reviews"
|
||||
cardTitle="Customer Reviews"
|
||||
cardTag="Verified"
|
||||
cardAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -107,9 +108,9 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/house-entrance-japan-building_23-2149301105.jpg"
|
||||
logoText="Island Plumbing"
|
||||
logoText="Reliable Brooklyn Plumbing, Heating & Cooling"
|
||||
columns={[
|
||||
{ title: "Store", items: [{ label: "About Us", href: "/about" }, { label: "Hours", href: "/contact" }] },
|
||||
{ title: "Store", items: [{ label: "About Us", href: "/about" }, { label: "Hours: 24/7", href: "/contact" }] },
|
||||
{ title: "Services", items: [{ label: "Emergency Repair", href: "/services" }, { label: "Contractor Account", href: "/contractor-accounts" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms", href: "#" }] },
|
||||
]}
|
||||
|
||||
@@ -22,125 +22,74 @@ export default function LandingPage() {
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Shop",
|
||||
id: "/shop",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Island Plumbing"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Reliable Brooklyn Plumbing, Heating & Cooling"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Common Questions"
|
||||
description="Need assistance with a specific service or repair?"
|
||||
faqsAnimation="slide-up"
|
||||
mediaPosition="left"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/technician-checking-heating-system-boiler-room_169016-55519.jpg?_wi=2"
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Do you offer delivery?",
|
||||
content: "Yes, we deliver daily across Brooklyn.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Are you open on weekends?",
|
||||
content: "Yes, we are open Saturdays.",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Common Questions"
|
||||
description="Need assistance with a specific service or repair? Available 24/7."
|
||||
faqsAnimation="slide-up"
|
||||
mediaPosition="left"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/technician-checking-heating-system-boiler-room_169016-55519.jpg?_wi=2"
|
||||
faqs={[
|
||||
{ id: "1", title: "Do you offer delivery?", content: "Yes, we deliver daily across Brooklyn." },
|
||||
{ id: "2", title: "Are you open 24/7?", content: "Yes, we operate 24 hours to serve your emergency plumbing needs." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Request a Quote"
|
||||
description="Send us your project details for bulk pricing."
|
||||
imageSrc="http://img.b2bpic.net/free-vector/abstract-business-brochure_23-2147635105.jpg?_wi=2"
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Email Address",
|
||||
required: true,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Request a Quote"
|
||||
description="Send us your project details for bulk pricing or call (516) 514-1013."
|
||||
imageSrc="http://img.b2bpic.net/free-vector/abstract-business-brochure_23-2147635105.jpg?_wi=2"
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/house-entrance-japan-building_23-2149301105.jpg?_wi=3"
|
||||
logoText="Island Plumbing"
|
||||
columns={[
|
||||
{
|
||||
title: "Store",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Hours",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Emergency Repair",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Contractor Account",
|
||||
href: "/contractor-accounts",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/house-entrance-japan-building_23-2149301105.jpg?_wi=3"
|
||||
logoText="Reliable Brooklyn Plumbing, Heating & Cooling"
|
||||
columns={[
|
||||
{
|
||||
title: "Store", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Hours: 24/7", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Emergency Repair", href: "/services" },
|
||||
{ label: "Contractor Account", href: "/contractor-accounts" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -22,139 +22,78 @@ export default function LandingPage() {
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Shop",
|
||||
id: "/shop",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Island Plumbing"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Reliable Brooklyn Plumbing, Heating & Cooling"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Water Heaters",
|
||||
price: "From $499",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/worker-repairing-water-heater_23-2149334231.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Pipes & Fittings",
|
||||
price: "All Sizes",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sanitary-equipment_93675-131498.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Bathroom Fixtures",
|
||||
price: "Modern Design",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-male-self-care-setting-still-life_23-2150326546.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Tools & Equipment",
|
||||
price: "Professional Grade",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pipe-wrench-left-side-wooden-background-with-copy-space_141793-15202.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "HVAC Parts",
|
||||
price: "In Stock",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-ventilation-system_23-2149388989.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Valves",
|
||||
price: "Brass/Steel",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mechanical-screws-desk_23-2148557966.jpg",
|
||||
},
|
||||
]}
|
||||
title="Top Categories"
|
||||
description="Quality components for every plumbing project."
|
||||
/>
|
||||
</div>
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Water Heaters", price: "From $499", imageSrc: "http://img.b2bpic.net/free-photo/worker-repairing-water-heater_23-2149334231.jpg"},
|
||||
{
|
||||
id: "2", name: "Pipes & Fittings", price: "All Sizes", imageSrc: "http://img.b2bpic.net/free-photo/sanitary-equipment_93675-131498.jpg?_wi=1"},
|
||||
{
|
||||
id: "3", name: "Bathroom Fixtures", price: "Modern Design", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-male-self-care-setting-still-life_23-2150326546.jpg"},
|
||||
{
|
||||
id: "4", name: "Tools & Equipment", price: "Professional Grade", imageSrc: "http://img.b2bpic.net/free-photo/top-view-pipe-wrench-left-side-wooden-background-with-copy-space_141793-15202.jpg"},
|
||||
{
|
||||
id: "5", name: "HVAC Parts", price: "In Stock", imageSrc: "http://img.b2bpic.net/free-photo/close-up-ventilation-system_23-2149388989.jpg"},
|
||||
{
|
||||
id: "6", name: "Valves", price: "Brass/Steel", imageSrc: "http://img.b2bpic.net/free-photo/mechanical-screws-desk_23-2148557966.jpg"},
|
||||
]}
|
||||
title="Top Categories"
|
||||
description="Quality components for every plumbing project."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="ecommerce" data-section="ecommerce">
|
||||
<ProductCatalogItem
|
||||
product={{
|
||||
id: "p1",
|
||||
name: "Copper Pipe Fitting",
|
||||
price: "$12.99",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sanitary-equipment_93675-131498.jpg?_wi=2",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<div id="ecommerce" data-section="ecommerce">
|
||||
<ProductCatalogItem
|
||||
product={{
|
||||
id: "p1", name: "Copper Pipe Fitting", price: "$12.99", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sanitary-equipment_93675-131498.jpg?_wi=2"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/house-entrance-japan-building_23-2149301105.jpg?_wi=2"
|
||||
logoText="Island Plumbing"
|
||||
columns={[
|
||||
{
|
||||
title: "Store",
|
||||
items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Hours",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
{
|
||||
label: "Emergency Repair",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Contractor Account",
|
||||
href: "/contractor-accounts",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/house-entrance-japan-building_23-2149301105.jpg?_wi=2"
|
||||
logoText="Reliable Brooklyn Plumbing, Heating & Cooling"
|
||||
columns={[
|
||||
{
|
||||
title: "Store", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Hours: 24/7", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Emergency Repair", href: "/services" },
|
||||
{ label: "Contractor Account", href: "/contractor-accounts" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user