Merge version_1 into main #2
@@ -5,8 +5,9 @@ import ReactLenis from "lenis/react";
|
||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import { Activity, ShieldCheck, Zap } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
@@ -21,87 +22,49 @@ export default function LandingPage() {
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Our Work",
|
||||
id: "/work",
|
||||
},
|
||||
{
|
||||
name: "Service Area",
|
||||
id: "/service-area",
|
||||
},
|
||||
{
|
||||
name: "Facebook",
|
||||
id: "https://facebook.com/yurii.khoma.2025",
|
||||
},
|
||||
]}
|
||||
brandName="Frankfurt Sofa & Carpet Cleaning"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Our Work", id: "/work" },
|
||||
{ name: "Service Area", id: "/service-area" },
|
||||
{ name: "Facebook", id: "https://facebook.com/yurii.khoma.2025" },
|
||||
]}
|
||||
brandName="Frankfurt Sofa & Carpet Cleaning"
|
||||
button={{ text: "Get Quote", href: "tel:+14848454829" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-section" data-section="about-section">
|
||||
<AboutMetric
|
||||
useInvertedBackground={false}
|
||||
title="About Frankfurt Sofa & Carpet Cleaning"
|
||||
metrics={[
|
||||
{
|
||||
label: "Professional Experience",
|
||||
value: "Reliable",
|
||||
},
|
||||
{
|
||||
label: "Service Quality",
|
||||
value: "High",
|
||||
},
|
||||
{
|
||||
label: "Fast Drying",
|
||||
value: "Yes",
|
||||
},
|
||||
]}
|
||||
metricsAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
<div id="about-section" data-section="about-section">
|
||||
<AboutMetric
|
||||
useInvertedBackground={false}
|
||||
title="About Frankfurt Sofa & Carpet Cleaning"
|
||||
metrics={[
|
||||
{ icon: Activity, label: "Professional Experience", value: "Reliable" },
|
||||
{ icon: ShieldCheck, label: "Service Quality", value: "High" },
|
||||
{ icon: Zap, label: "Fast Drying", value: "Yes" }
|
||||
]}
|
||||
metricsAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Frankfurt Sofa & Carpet Cleaning"
|
||||
columns={[
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "(484) 845-4829",
|
||||
href: "tel:+14848454829",
|
||||
},
|
||||
{
|
||||
label: "frankfurtsofacleaning@gmail.com",
|
||||
href: "mailto:frankfurtsofacleaning@gmail.com",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Location",
|
||||
items: [
|
||||
{
|
||||
label: "1014 S Chester Rd, West Chester, PA 19382",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 Frankfurt Sofa & Carpet Cleaning."
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Frankfurt Sofa & Carpet Cleaning"
|
||||
columns={[
|
||||
{ title: "Contact", items: [
|
||||
{ label: "(484) 845-4829", href: "tel:+14848454829" },
|
||||
{ label: "frankfurtsofacleaning@gmail.com", href: "mailto:frankfurtsofacleaning@gmail.com" }
|
||||
] },
|
||||
{ title: "Location", items: [
|
||||
{ label: "1014 S Chester Rd, West Chester, PA 19382", href: "#" }
|
||||
] }
|
||||
]}
|
||||
copyrightText="© 2025 Frankfurt Sofa & Carpet Cleaning."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
273
src/app/page.tsx
273
src/app/page.tsx
@@ -6,208 +6,99 @@ import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
|
||||
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="largeSmallSizeMediumTitles"
|
||||
background="noise"
|
||||
cardStyle="gradient-radial"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="medium"
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="largeSmallSizeMediumTitles"
|
||||
background="noise"
|
||||
cardStyle="gradient-radial"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Our Work",
|
||||
id: "/work",
|
||||
},
|
||||
{
|
||||
name: "Service Area",
|
||||
id: "/service-area",
|
||||
},
|
||||
{
|
||||
name: "Facebook",
|
||||
id: "https://facebook.com/yurii.khoma.2025",
|
||||
},
|
||||
]}
|
||||
brandName="Frankfurt Sofa & Carpet Cleaning"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Our Work", id: "/work" },
|
||||
{ name: "Service Area", id: "/service-area" },
|
||||
{ name: "Facebook", id: "https://facebook.com/yurii.khoma.2025" },
|
||||
]}
|
||||
brandName="Frankfurt Sofa & Carpet Cleaning"
|
||||
button={{ text: "Get Quote", href: "tel:+14848454829" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitTestimonial
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
title="Professional Sofa & Carpet Cleaning Near You"
|
||||
description="Deep cleaning, fast drying, same-day service available. Safe for kids and pets."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Client",
|
||||
handle: "@frankfurt-cleaning",
|
||||
testimonial: "Excellent service and fast results! Highly recommended.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/angry-asian-man-standing-couch-leaning-it-looking-camera_1098-17479.jpg?_wi=1",
|
||||
imageAlt: "professional carpet cleaning service",
|
||||
},
|
||||
{
|
||||
name: "Client",
|
||||
handle: "@frankfurt-cleaning",
|
||||
testimonial: "Professional and very thorough cleaning.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CNnjMXXku88iHFue8MKQx5vISJ/uploaded-1776266215045-3f6h1sx4.png?_wi=1",
|
||||
imageAlt: "professional carpet cleaning service",
|
||||
},
|
||||
{
|
||||
name: "Client",
|
||||
handle: "@frankfurt-cleaning",
|
||||
testimonial: "My sofa looks brand new again!",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CNnjMXXku88iHFue8MKQx5vISJ/uploaded-1776266215045-imo1zxol.png?_wi=1",
|
||||
imageAlt: "professional carpet cleaning service",
|
||||
},
|
||||
{
|
||||
name: "Client",
|
||||
handle: "@frankfurt-cleaning",
|
||||
testimonial: "Same-day service was a life saver.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-brushing-textile_23-2148465017.jpg?_wi=1",
|
||||
imageAlt: "professional carpet cleaning service",
|
||||
},
|
||||
{
|
||||
name: "Client",
|
||||
handle: "@frankfurt-cleaning",
|
||||
testimonial: "Reliable and affordable cleaning.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-people-working-together_23-2149721917.jpg?_wi=1",
|
||||
imageAlt: "professional carpet cleaning service",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:+14848454829",
|
||||
},
|
||||
{
|
||||
text: "Text Us",
|
||||
href: "sms:+14848454829?body=Hi%20I%20need%20a%20cleaning%20quote",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/angry-asian-man-standing-couch-leaning-it-looking-camera_1098-17479.jpg?_wi=2"
|
||||
mediaAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitTestimonial
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Professional Sofa & Carpet Cleaning Near You"
|
||||
description="Deep cleaning, fast drying, same-day service available. Safe for kids and pets."
|
||||
testimonials={[
|
||||
{ name: "Client", handle: "@frankfurt-cleaning", testimonial: "Excellent service and fast results! Highly recommended.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/angry-asian-man-standing-couch-leaning-it-looking-camera_1098-17479.jpg", imageAlt: "professional carpet cleaning service" },
|
||||
{ name: "Client", handle: "@frankfurt-cleaning", testimonial: "Professional and very thorough cleaning.", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CNnjMXXku88iHFue8MKQx5vISJ/uploaded-1776266215045-3f6h1sx4.png", imageAlt: "professional carpet cleaning service" },
|
||||
{ name: "Client", handle: "@frankfurt-cleaning", testimonial: "My sofa looks brand new again!", rating: 5, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CNnjMXXku88iHFue8MKQx5vISJ/uploaded-1776266215045-imo1zxol.png", imageAlt: "professional carpet cleaning service" },
|
||||
{ name: "Client", handle: "@frankfurt-cleaning", testimonial: "Same-day service was a life saver.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-brushing-textile_23-2148465017.jpg", imageAlt: "professional carpet cleaning service" },
|
||||
{ name: "Client", handle: "@frankfurt-cleaning", testimonial: "Reliable and affordable cleaning.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/high-angle-people-working-together_23-2149721917.jpg", imageAlt: "professional carpet cleaning service" }
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Call Now", href: "tel:+14848454829" },
|
||||
{ text: "Text Us", href: "sms:+14848454829?body=Hi%20I%20need%20a%20cleaning%20quote" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/angry-asian-man-standing-couch-leaning-it-looking-camera_1098-17479.jpg"
|
||||
mediaAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="care-tips" data-section="care-tips">
|
||||
<FaqSplitText
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Vacuum Regularly",
|
||||
content: "Prevents dirt buildup.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Clean Spills Immediately",
|
||||
content: "Prevents permanent stains.",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Avoid Excess Moisture",
|
||||
content: "Helps drying process.",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Professional Cleaning",
|
||||
content: "Every 6-12 months.",
|
||||
},
|
||||
]}
|
||||
sideTitle="Furniture Care Tips"
|
||||
sideDescription="Professional cleaning extends the life of your furniture."
|
||||
faqsAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
<div id="care-tips" data-section="care-tips">
|
||||
<FaqSplitText
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{ id: "1", title: "Vacuum Regularly", content: "Prevents dirt buildup." },
|
||||
{ id: "2", title: "Clean Spills Immediately", content: "Prevents permanent stains." },
|
||||
{ id: "3", title: "Avoid Excess Moisture", content: "Helps drying process." },
|
||||
{ id: "4", title: "Professional Cleaning", content: "Every 6-12 months." }
|
||||
]}
|
||||
sideTitle="Furniture Care Tips"
|
||||
sideDescription="Professional cleaning extends the life of your furniture."
|
||||
faqsAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardSeven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact-info" data-section="contact-info">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Get In Touch"
|
||||
title="Need a Quote?"
|
||||
description="Call us at (484) 845-4829 or email frankfurtsofacleaning@gmail.com for a quick quote."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SplitAbout
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-brushing-textile_23-2148465017.jpg?_wi=2"
|
||||
imageAlt="cleaning vacuum icon"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-info" data-section="contact-info">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Get In Touch"
|
||||
title="Need a Quote?"
|
||||
description="Call us at (484) 845-4829 or email frankfurtsofacleaning@gmail.com for a quick quote."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Frankfurt Sofa & Carpet Cleaning"
|
||||
columns={[
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "(484) 845-4829",
|
||||
href: "tel:+14848454829",
|
||||
},
|
||||
{
|
||||
label: "frankfurtsofacleaning@gmail.com",
|
||||
href: "mailto:frankfurtsofacleaning@gmail.com",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Location",
|
||||
items: [
|
||||
{
|
||||
label: "1014 S Chester Rd, West Chester, PA 19382",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 Frankfurt Sofa & Carpet Cleaning."
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Frankfurt Sofa & Carpet Cleaning"
|
||||
columns={[
|
||||
{ title: "Contact", items: [
|
||||
{ label: "(484) 845-4829", href: "tel:+14848454829" },
|
||||
{ label: "frankfurtsofacleaning@gmail.com", href: "mailto:frankfurtsofacleaning@gmail.com" }
|
||||
] },
|
||||
{ title: "Location", items: [
|
||||
{ label: "1014 S Chester Rd, West Chester, PA 19382", href: "#" }
|
||||
] }
|
||||
]}
|
||||
copyrightText="© 2025 Frankfurt Sofa & Carpet Cleaning."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -5,8 +5,9 @@ import ReactLenis from "lenis/react";
|
||||
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import { MapPin } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ServiceAreaPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
@@ -21,97 +22,51 @@ export default function LandingPage() {
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Our Work",
|
||||
id: "/work",
|
||||
},
|
||||
{
|
||||
name: "Service Area",
|
||||
id: "/service-area",
|
||||
},
|
||||
{
|
||||
name: "Facebook",
|
||||
id: "https://facebook.com/yurii.khoma.2025",
|
||||
},
|
||||
]}
|
||||
brandName="Frankfurt Sofa & Carpet Cleaning"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Our Work", id: "/work" },
|
||||
{ name: "Service Area", id: "/service-area" },
|
||||
{ name: "Facebook", id: "https://facebook.com/yurii.khoma.2025" },
|
||||
]}
|
||||
brandName="Frankfurt Sofa & Carpet Cleaning"
|
||||
button={{ text: "Get Quote", href: "tel:+14848454829" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="service-area-info" data-section="service-area-info">
|
||||
<FeatureBento
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Chester, PA",
|
||||
description: "Serving Chester and surrounding areas.",
|
||||
bentoComponent: "reveal-icon",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CNnjMXXku88iHFue8MKQx5vISJ/uploaded-1776266215045-3f6h1sx4.png?_wi=3",
|
||||
imageAlt: "User provided image",
|
||||
},
|
||||
{
|
||||
title: "Wilmington, DE",
|
||||
description: "Serving Wilmington.",
|
||||
bentoComponent: "reveal-icon",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CNnjMXXku88iHFue8MKQx5vISJ/uploaded-1776266215045-imo1zxol.png?_wi=3",
|
||||
imageAlt: "User provided image",
|
||||
},
|
||||
{
|
||||
title: "Philadelphia, PA",
|
||||
description: "Serving Philadelphia.",
|
||||
bentoComponent: "reveal-icon",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/angry-asian-man-standing-couch-leaning-it-looking-camera_1098-17479.jpg?_wi=4",
|
||||
imageAlt: "User provided image",
|
||||
},
|
||||
]}
|
||||
title="Service Areas"
|
||||
description="Proudly serving the following locations."
|
||||
/>
|
||||
</div>
|
||||
<div id="service-area-info" data-section="service-area-info">
|
||||
<FeatureBento
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ title: "Chester, PA", description: "Serving Chester and surrounding areas.", bentoComponent: "reveal-icon", icon: MapPin },
|
||||
{ title: "Wilmington, DE", description: "Serving Wilmington.", bentoComponent: "reveal-icon", icon: MapPin },
|
||||
{ title: "Philadelphia, PA", description: "Serving Philadelphia.", bentoComponent: "reveal-icon", icon: MapPin }
|
||||
]}
|
||||
title="Service Areas"
|
||||
description="Proudly serving the following locations."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Frankfurt Sofa & Carpet Cleaning"
|
||||
columns={[
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "(484) 845-4829",
|
||||
href: "tel:+14848454829",
|
||||
},
|
||||
{
|
||||
label: "frankfurtsofacleaning@gmail.com",
|
||||
href: "mailto:frankfurtsofacleaning@gmail.com",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Location",
|
||||
items: [
|
||||
{
|
||||
label: "1014 S Chester Rd, West Chester, PA 19382",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 Frankfurt Sofa & Carpet Cleaning."
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Frankfurt Sofa & Carpet Cleaning"
|
||||
columns={[
|
||||
{ title: "Contact", items: [
|
||||
{ label: "(484) 845-4829", href: "tel:+14848454829" },
|
||||
{ label: "frankfurtsofacleaning@gmail.com", href: "mailto:frankfurtsofacleaning@gmail.com" }
|
||||
] },
|
||||
{ title: "Location", items: [
|
||||
{ label: "1014 S Chester Rd, West Chester, PA 19382", href: "#" }
|
||||
] }
|
||||
]}
|
||||
copyrightText="© 2025 Frankfurt Sofa & Carpet Cleaning."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -6,7 +6,7 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function WorkPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
@@ -21,113 +21,55 @@ export default function LandingPage() {
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Our Work",
|
||||
id: "/work",
|
||||
},
|
||||
{
|
||||
name: "Service Area",
|
||||
id: "/service-area",
|
||||
},
|
||||
{
|
||||
name: "Facebook",
|
||||
id: "https://facebook.com/yurii.khoma.2025",
|
||||
},
|
||||
]}
|
||||
brandName="Frankfurt Sofa & Carpet Cleaning"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Our Work", id: "/work" },
|
||||
{ name: "Service Area", id: "/service-area" },
|
||||
{ name: "Facebook", id: "https://facebook.com/yurii.khoma.2025" },
|
||||
]}
|
||||
brandName="Frankfurt Sofa & Carpet Cleaning"
|
||||
button={{ text: "Get Quote", href: "tel:+14848454829" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="work-gallery" data-section="work-gallery">
|
||||
<ProductCardOne
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sofa Deep Cleaning",
|
||||
price: "Before / After",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CNnjMXXku88iHFue8MKQx5vISJ/uploaded-1776266215045-imo1zxol.png?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Carpet Stain Removal",
|
||||
price: "Before / After",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CNnjMXXku88iHFue8MKQx5vISJ/uploaded-1776266215045-3f6h1sx4.png?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Mattress Restoration",
|
||||
price: "Before / After",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/angry-asian-man-standing-couch-leaning-it-looking-camera_1098-17479.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Sofa Deep Cleaning",
|
||||
price: "Before / After",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-brushing-textile_23-2148465017.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Carpet Stain Removal",
|
||||
price: "Before / After",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-people-working-together_23-2149721917.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Mattress Restoration",
|
||||
price: "Before / After",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-cleaning-his-home_23-2148112108.jpg",
|
||||
},
|
||||
]}
|
||||
title="Our Work"
|
||||
description="Before and after results for our clients."
|
||||
/>
|
||||
</div>
|
||||
<div id="work-gallery" data-section="work-gallery">
|
||||
<ProductCardOne
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "1", name: "Sofa Deep Cleaning", price: "Before / After", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CNnjMXXku88iHFue8MKQx5vISJ/uploaded-1776266215045-imo1zxol.png" },
|
||||
{ id: "2", name: "Carpet Stain Removal", price: "Before / After", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CNnjMXXku88iHFue8MKQx5vISJ/uploaded-1776266215045-3f6h1sx4.png" },
|
||||
{ id: "3", name: "Mattress Restoration", price: "Before / After", imageSrc: "http://img.b2bpic.net/free-photo/angry-asian-man-standing-couch-leaning-it-looking-camera_1098-17479.jpg" },
|
||||
{ id: "4", name: "Sofa Deep Cleaning", price: "Before / After", imageSrc: "http://img.b2bpic.net/free-photo/woman-brushing-textile_23-2148465017.jpg" },
|
||||
{ id: "5", name: "Carpet Stain Removal", price: "Before / After", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-people-working-together_23-2149721917.jpg" },
|
||||
{ id: "6", name: "Mattress Restoration", price: "Before / After", imageSrc: "http://img.b2bpic.net/free-photo/man-cleaning-his-home_23-2148112108.jpg" }
|
||||
]}
|
||||
title="Our Work"
|
||||
description="Before and after results for our clients."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Frankfurt Sofa & Carpet Cleaning"
|
||||
columns={[
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "(484) 845-4829",
|
||||
href: "tel:+14848454829",
|
||||
},
|
||||
{
|
||||
label: "frankfurtsofacleaning@gmail.com",
|
||||
href: "mailto:frankfurtsofacleaning@gmail.com",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Location",
|
||||
items: [
|
||||
{
|
||||
label: "1014 S Chester Rd, West Chester, PA 19382",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2025 Frankfurt Sofa & Carpet Cleaning."
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Frankfurt Sofa & Carpet Cleaning"
|
||||
columns={[
|
||||
{ title: "Contact", items: [
|
||||
{ label: "(484) 845-4829", href: "tel:+14848454829" },
|
||||
{ label: "frankfurtsofacleaning@gmail.com", href: "mailto:frankfurtsofacleaning@gmail.com" }
|
||||
] },
|
||||
{ title: "Location", items: [
|
||||
{ label: "1014 S Chester Rd, West Chester, PA 19382", href: "#" }
|
||||
] }
|
||||
]}
|
||||
copyrightText="© 2025 Frankfurt Sofa & Carpet Cleaning."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user