Add src/app/services/page.tsx

This commit is contained in:
2026-03-03 07:02:21 +00:00
parent 51836a1f91
commit e5d29366f7

153
src/app/services/page.tsx Normal file
View File

@@ -0,0 +1,153 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import AboutMetric from '@/components/sections/about/AboutMetric';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { Award, Heart, Users, Zap } from 'lucide-react';
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="small"
sizing="medium"
background="noiseDiagonalGradient"
cardStyle="layered-gradient"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="solid"
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About Us", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
{ name: "Donate", id: "/donate" }
]}
brandName="Nanjil Oasis"
bottomLeftText="Est. 2009"
bottomRightText="nanjiloasismrc@gmail.com"
/>
</div>
<div id="hero" data-section="hero">
<HeroLogo
logoText="Our Services"
description="Comprehensive support programs designed to meet each child's unique needs with compassion and expertise."
buttons={[
{ text: "Explore Programs", href: "#services" },
{ text: "Get Support", href: "/contact" }
]}
imageSrc="http://img.b2bpic.net/free-photo/therapist-working-with-child_53876-12890.jpg"
imageAlt="Therapist working with a child in a supportive environment"
showDimOverlay={true}
ariaLabel="Services page hero section"
/>
</div>
<div id="services" data-section="services">
<FeatureCardTwelve
title="Comprehensive Support Services"
description="We offer holistic, multi-disciplinary therapies and educational programs tailored to each child's unique needs and abilities."
features={[
{
id: "early-intervention", label: "Early Intervention", title: "Foundational Development Programs", items: ["Developmental screening", "Family-centered support", "Skill-building activities", "Progress monitoring"]
},
{
id: "therapies", label: "Therapies", title: "Specialized Therapeutic Services", items: ["Speech therapy", "Physiotherapy", "Occupational therapy", "Music & dance therapy", "Art therapy", "Hydrotherapy"]
},
{
id: "vocational", label: "Life Skills", title: "Empowering Independence", items: ["Vocational training", "Sand therapy", "Skating", "Silambam (martial arts)", "Yoga & wellness", "Daily living skills"]
}
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
ariaLabel="Services and support programs section"
/>
</div>
<div id="outcomes" data-section="outcomes">
<AboutMetric
title="Our Track Record of Success"
useInvertedBackground={false}
metrics={[
{ icon: Users, label: "Children Served", value: "300+" },
{ icon: Award, label: "Success Rate", value: "92%" },
{ icon: Heart, label: "Family Satisfaction", value: "98%" },
{ icon: Zap, label: "Program Types", value: "12+" }
]}
metricsAnimation="slide-up"
ariaLabel="Services outcomes and impact metrics"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFifteen
testimonial="The personalized approach and skilled team at Nanjil Oasis made all the difference. My child has grown beyond what I thought possible. The therapies are effective, and the staff genuinely cares about each child's progress."
rating={5}
author="Arun K., Parent"
avatars={[
{ src: "http://img.b2bpic.net/free-photo/cheerful-man-smiling-at-camera_95076-237.jpg", alt: "Parent testimonial" },
{ src: "http://img.b2bpic.net/free-photo/happy-family-mother-child-daughter_1257-49.jpg", alt: "Family member" },
{ src: "http://img.b2bpic.net/free-photo/positive-emotions-cheerful-family_1098-176.jpg", alt: "Parent testimonial" },
{ src: "http://img.b2bpic.net/free-photo/portrait-young-man-white-background_53876-27098.jpg", alt: "Team member" },
{ src: "http://img.b2bpic.net/free-photo/happy-woman-holding-child_53876-128.jpg", alt: "Parent testimonial" },
{ src: "http://img.b2bpic.net/free-photo/smiling-couple-embracing-against-white-wall_23-2148172524.jpg", alt: "Caregiver testimonial" }
]}
ratingAnimation="slide-up"
avatarsAnimation="slide-up"
useInvertedBackground={false}
ariaLabel="Testimonial from parents about our services"
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "About Us", href: "/about" },
{ label: "Services", href: "/services" },
{ label: "Contact", href: "/contact" }
]
},
{
title: "Donate", items: [
{ label: "Make a Donation", href: "/donate" },
{ label: "Become a Partner", href: "mailto:nanjiloasismrc@gmail.com" },
{ label: "Bank Transfer Details", href: "#" }
]
},
{
title: "Contact", items: [
{ label: "Email Us", href: "mailto:nanjiloasismrc@gmail.com" },
{ label: "Call Us", href: "tel:+919944330809" },
{ label: "Location", href: "#" }
]
},
{
title: "Bank Details", items: [
{ label: "PNB - Account: 3868000100376620", href: "#" },
{ label: "UPI: 9597070301", href: "#" },
{ label: "Registered Trust", href: "#" }
]
}
]}
bottomLeftText="© 2025 Nanjil Oasis Happy Centre. All rights reserved."
bottomRightText="You Are Happy and Safe in Our Hands"
ariaLabel="Site footer"
/>
</div>
</ThemeProvider>
);
}