Switch to version 1: remove src/app/contact/page.tsx

This commit is contained in:
2026-03-03 07:06:09 +00:00
parent 8ba550daa2
commit 2fe98185dc

View File

@@ -1,144 +0,0 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { MessageCircle, Mail, Phone, MapPin } from 'lucide-react';
export default function ContactPage() {
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="Get In Touch"
description="We're here to answer your questions and support your journey. Reach out to us today."
buttons={[
{ text: "Send a Message", href: "#contact" },
{ text: "Learn About Programs", href: "/services" }
]}
imageSrc="http://img.b2bpic.net/free-photo/two-young-women-having-coffee_53876-12749.jpg"
imageAlt="Team members ready to assist"
showDimOverlay={true}
ariaLabel="Contact page hero section"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Contact Us"
title="Reach Out Today"
description="Have questions about our programs or want to discuss your child's needs? Our compassionate team is ready to help. Fill out the form below or contact us directly."
background={{ variant: "plain" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/happy-family-mother-father-children_1098-1214.jpg"
imageAlt="Happy family at Nanjil Oasis"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="Enter your email"
buttonText="Get in Touch"
termsText="We'll respond within 24 hours. Your information is secure and confidential."
onSubmit={(email) => console.log(email)}
ariaLabel="Contact form section"
/>
</div>
<div id="faq" data-section="faq">
<ContactFaq
ctaTitle="Still Have Questions?"
ctaDescription="Contact our team directly for immediate assistance with enrollment, therapy inquiries, or partnership opportunities."
ctaButton={{ text: "Contact Support", href: "mailto:nanjiloasismrc@gmail.com" }}
ctaIcon={MessageCircle}
useInvertedBackground={false}
animationType="slide-up"
faqs={[
{
id: "1", title: "How do I enroll my child in your programs?", content: "Contact us via email or phone to schedule an initial assessment. Our team will discuss your child's needs, conduct a developmental screening, and create a personalized program plan. We make enrollment simple and accessible."
},
{
id: "2", title: "What are your operating hours?", content: "We operate Monday through Friday, 9 AM to 5 PM. Weekend programs are available by special arrangement. We also offer home-based therapy and counseling by appointment."
},
{
id: "3", title: "Do you offer trial sessions?", content: "Yes! We offer a free consultation and trial session so you and your child can experience our programs firsthand. This helps us understand your needs and show you our approach."
},
{
id: "4", title: "Can we partner with or sponsor your organization?", content: "Absolutely! We welcome corporate partnerships, sponsorships, and volunteer opportunities. Please reach out to discuss how your organization can make a difference in children's lives."
},
{
id: "5", title: "What payment options do you accept?", content: "We accept bank transfers, UPI payments, and cash. We also offer flexible payment plans and scholarships based on family income. No child is turned away due to financial constraints."
}
]}
accordionAnimationType="smooth"
ariaLabel="Contact and frequently asked questions section"
/>
</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>
);
}