31 lines
2.2 KiB
TypeScript
31 lines
2.2 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
|
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
|
import { Award, Users, Clock } from "lucide-react";
|
|
|
|
export default function FeaturesPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-stagger"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="pill"
|
|
contentWidth="mediumSmall"
|
|
sizing="medium"
|
|
background="none"
|
|
cardStyle="glass-elevated"
|
|
primaryButtonStyle="diagonal-gradient"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="medium"
|
|
>
|
|
<ReactLenis root>
|
|
<NavbarLayoutFloatingInline navItems={[{ name: "Home", id: "/" }, { name: "Services", id: "/services" }, { name: "Features", id: "/features" }, { name: "About", id: "/about" }, { name: "Testimonials", id: "/testimonials" }, { name: "Areas", id: "/areas" }, { name: "Contact", id: "/contact" }]} brandName="Mina's Cleaning" button={{ text: "Get a Free Quote", href: "/contact" }} />
|
|
<FeatureBento animationType="slide-up" textboxLayout="default" useInvertedBackground={true} features={[{ title: "Quality & Reliability", description: "Decades of proven excellence in every scrub.", bentoComponent: "reveal-icon", icon: Award }, { title: "Professional Team", description: "Trained, trusted, and bonded for your safety.", bentoComponent: "reveal-icon", icon: Users }, { title: "Flexible Scheduling", description: "We work around your busy life seamlessly.", bentoComponent: "reveal-icon", icon: Clock }]} title="Why Choose Mina's" description="We don't just clean; we provide peace of mind through professional excellence." />
|
|
<FooterBaseCard logoText="Mina's Cleaning" columns={[{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }]} copyrightText="© 2025 Mina's Cleaning Services | Glenside, PA" />
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
} |