diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..7d11edb --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,31 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import AboutMetric from '@/components/sections/about/AboutMetric'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { Calendar, MapPin, ThumbsUp, BookOpen } from "lucide-react"; + +export default function AboutPage() { + return ( + + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/areas/page.tsx b/src/app/areas/page.tsx new file mode 100644 index 0000000..bf14565 --- /dev/null +++ b/src/app/areas/page.tsx @@ -0,0 +1,30 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function AreasPage() { + return ( + + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..7b85137 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,30 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function ContactPage() { + return ( + + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx new file mode 100644 index 0000000..abfaad9 --- /dev/null +++ b/src/app/features/page.tsx @@ -0,0 +1,31 @@ +"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 ( + + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index e84234e..e19aadb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -73,6 +73,7 @@ export default function LandingPage() { ]} title="Our Professional Services" description="Tailored cleaning solutions for your specific needs, executed with absolute precision and care." + className="px-4 py-16" /> @@ -88,6 +89,7 @@ export default function LandingPage() { ]} title="Why Choose Mina's" description="We don't just clean; we provide peace of mind through professional excellence." + className="px-4 py-16" /> @@ -102,6 +104,7 @@ export default function LandingPage() { { icon: BookOpen, label: "BBA Certified", value: "Yes" }, ]} metricsAnimation="slide-up" + className="px-4 py-16" /> @@ -124,6 +127,7 @@ export default function LandingPage() { ]} title="Voices of Trust" description="Hear what our valued clients in PA, NJ, and DE say about our services." + className="px-4 py-16" /> @@ -136,6 +140,7 @@ export default function LandingPage() { ]} title="Serving PA, NJ, & DE" description="Proudly providing high-end cleaning services across our tri-state community." + className="px-4 py-16" /> @@ -149,6 +154,7 @@ export default function LandingPage() { buttons={[ { text: "Get a Free Quote", href: "#contact" }, ]} + className="px-4 py-16" /> @@ -163,6 +169,7 @@ export default function LandingPage() { { text: "Email Us", href: "mailto:hello@minascleaning.com" }, { text: "Call Now", href: "tel:2155550100" }, ]} + className="px-4 py-16" /> @@ -186,6 +193,7 @@ export default function LandingPage() { }, ]} copyrightText="© 2025 Mina's Cleaning Services | Glenside, PA" + className="px-4 py-8" /> diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..9fe7903 --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,31 @@ +"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 { Briefcase, Home, Sparkles, FileText } from "lucide-react"; + +export default function ServicesPage() { + return ( + + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/testimonials/page.tsx b/src/app/testimonials/page.tsx new file mode 100644 index 0000000..e3aa933 --- /dev/null +++ b/src/app/testimonials/page.tsx @@ -0,0 +1,30 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function TestimonialsPage() { + return ( + + + + + + + + ); +} \ No newline at end of file