117 lines
5.2 KiB
TypeScript
117 lines
5.2 KiB
TypeScript
"use client";
|
|
|
|
import ReactLenis from "lenis/react";
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
|
import HeroOverlayTestimonial from "@/components/sections/hero/HeroOverlayTestimonial";
|
|
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
|
|
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
|
|
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
|
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
|
import { Star, MapPin, Clock } from "lucide-react";
|
|
|
|
export default function LaundryPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="expand-hover"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="soft"
|
|
contentWidth="mediumLarge"
|
|
sizing="large"
|
|
background="none"
|
|
cardStyle="glass-elevated"
|
|
primaryButtonStyle="gradient"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="semibold"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleFullscreen
|
|
brandName="Laundry Super Fresh"
|
|
navItems={[
|
|
{ name: "Services", id: "services" },
|
|
{ name: "About", id: "about" },
|
|
{ name: "Testimonials", id: "testimonials" },
|
|
{ name: "Contact", id: "contact" },
|
|
]}
|
|
button={{ text: "Call Now", href: "tel:085278739176" }}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroOverlayTestimonial
|
|
tag="Professional Laundry Services"
|
|
tagIcon={Star}
|
|
title="Super Clean, Super Fresh"
|
|
description="Premium laundry service at Jl. Tengku Bey, Pekanbaru. Fast, reliable, and handled with care to ensure your clothes look and feel their best every day."
|
|
buttons={[
|
|
{ text: "Contact Us", href: "#contact" },
|
|
{ text: "Our Services", href: "#services" },
|
|
]}
|
|
imageSrc="https://images.unsplash.com/photo-1545173168-9f1947eebb7f?q=80&w=2071&auto=format&fit=crop"
|
|
testimonials={[
|
|
{
|
|
name: "Satisfied Customer", handle: "4.9 Rating", testimonial: "Best laundry service in Bukit Raya! Clothes always come back fresh and perfectly folded.", rating: 5,
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<TestimonialAboutCard
|
|
tag="About Us"
|
|
tagIcon={MapPin}
|
|
title="Quality Laundry in the Heart of Pekanbaru"
|
|
description="Located at Jl. Tengku Bey, Simpang Tiga, Kec. Bukit Raya. We are committed to providing top-tier laundry solutions for your convenience."
|
|
subdescription="Open Daily until 9:00 PM"
|
|
icon={Clock}
|
|
imageSrc="https://images.unsplash.com/photo-1521655321287-2475e1823126?q=80&w=2070&auto=format&fit=crop"
|
|
mediaAnimation="opacity"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="services" data-section="services">
|
|
<FeatureCardNineteen
|
|
title="Our Services"
|
|
description="Comprehensive care for all your fabrics."
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
features={[
|
|
{ tag: "Laundry", title: "Wash & Fold", subtitle: "Daily Wear", description: "High quality cleaning and expert folding for your everyday clothing." },
|
|
{ tag: "Dry Cleaning", title: "Dry Cleaning", subtitle: "Special Care", description: "Gentle treatment for delicate garments and formal wear." },
|
|
{ tag: "Ironing", title: "Professional Pressing", subtitle: "Crisp Finish", description: "Achieve that professional, wrinkle-free look for every outfit." },
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactSplitForm
|
|
title="Visit or Contact Us"
|
|
description="Need laundry help? Drop by our store at Jl. Tengku Bey or give us a call!"
|
|
useInvertedBackground={false}
|
|
inputs={[
|
|
{ name: "name", type: "text", placeholder: "Your Name" },
|
|
{ name: "email", type: "email", placeholder: "Email Address" },
|
|
]}
|
|
textarea={{ name: "message", placeholder: "Special instructions or pick-up inquiries?" }}
|
|
buttonText="Send Message"
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterSimple
|
|
columns={[
|
|
{ title: "Location", items: [{ label: "Jl. Tengku Bey, Simpang Tiga, Kota Pekanbaru" }, { label: "0852-7873-9176" }] },
|
|
{ title: "Operating Hours", items: [{ label: "Closing at 9:00 PM Daily" }] },
|
|
{ title: "Website", items: [{ label: "superfreshlaundry.id", href: "https://superfreshlaundry.id" }] },
|
|
]}
|
|
bottomLeftText="© 2024 Laundry Super Fresh"
|
|
bottomRightText="Serving Bukit Raya, Pekanbaru"
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|