Update src/app/contact/page.tsx

This commit is contained in:
2026-03-05 14:49:08 +00:00
parent 6dcfc28ab8
commit f67f16e5de

View File

@@ -2,8 +2,8 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Phone } from "lucide-react";
@@ -18,8 +18,7 @@ export default function ContactPage() {
const footerColumns = [
{
title: "Company",
items: [
title: "Company", items: [
{ label: "Home", href: "/" },
{ label: "About Us", href: "/about" },
{ label: "Services", href: "/services" },
@@ -27,8 +26,7 @@ export default function ContactPage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Phone: 04 234 4002", href: "tel:+97142344002" },
{ label: "WhatsApp", href: "https://wa.me/97142344002" },
{ label: "Email Us", href: "/contact" },
@@ -36,8 +34,7 @@ export default function ContactPage() {
],
},
{
title: "Services",
items: [
title: "Services", items: [
{ label: "Typing Services", href: "/services" },
{ label: "Document Assistance", href: "/services" },
{ label: "Visa Support", href: "/services" },
@@ -64,71 +61,39 @@ export default function ContactPage() {
<NavbarStyleApple brandName="Aajel" navItems={navItems} />
</div>
{/* Main Contact CTA Section */}
<div id="contact-main" data-section="contact-main">
<ContactCTA
{/* Hero Section */}
<div id="hero" data-section="hero">
<HeroBillboardScroll
tag="Get in Touch"
tagIcon={Phone}
tagAnimation="slide-up"
title="Ready to Get Professional Support?"
description="Contact Aajel Business Services today. Whether you need typing assistance, document processing, visa support, or business guidance, our experienced team is ready to help you quickly and professionally. Reach out now for immediate assistance."
title="Contact Aajel Business Services Today"
description="Have questions about our services or need immediate assistance? Reach out to our professional team. We're available 24/7 to provide fast, reliable support for your business needs in Dubai."
background={{ variant: "plain" }}
buttons={[
{ text: "Call Now: 04 234 4002", href: "tel:+97142344002" },
{ text: "WhatsApp Us", href: "https://wa.me/97142344002" },
{ text: "Call: 04 234 4002", href: "tel:+97142344002" },
{ text: "WhatsApp Now", href: "https://wa.me/97142344002" },
]}
buttonAnimation="slide-up"
background={{ variant: "plain" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/business-people-meeting-office-conference-table_1262-19308.jpg"
imageAlt="Contact Us"
/>
</div>
{/* FAQ Section */}
<div id="contact-faq" data-section="contact-faq">
<FaqSplitText
sideTitle="Frequently Asked Questions"
sideDescription="Find answers to common questions about our services, contact methods, pricing, and support options."
textPosition="left"
{/* Contact Form Section */}
<div id="contact-form" data-section="contact-form">
<ContactCenter
tag="Send us a Message"
tagIcon={Phone}
tagAnimation="slide-up"
title="Get in Touch With Our Team"
description="Have a question or need more information about our services? Fill out the form below and we'll get back to you as soon as possible. For urgent matters, please call us directly at 04 234 4002."
background={{ variant: "plain" }}
useInvertedBackground={false}
animationType="smooth"
faqsAnimation="slide-up"
faqs={[
{
id: "1",
title: "What services do you provide?",
content:
"We offer comprehensive typing services, document processing, business documentation assistance, visa and government form support, PRO services, and administrative support for UAE residents and businesses. Visit our Services page for detailed information on all offerings.",
},
{
id: "2",
title: "Can I contact you on WhatsApp?",
content:
"Yes! WhatsApp is one of our preferred contact methods for quick inquiries and fast responses. Message us at your convenience, and our team will respond promptly with the help you need.",
},
{
id: "3",
title: "Do you help with business and document services in Dubai?",
content:
"Absolutely. We specialize in supporting businesses and individuals across Dubai and the UAE with professional typing, documentation, visa assistance, government forms, and business setup support.",
},
{
id: "4",
title: "Where are you located?",
content:
"We are located at 163 Al Nahda St - Al Twar 5 - Dubai, in the Zahrat Al Madan area. Our office is easily accessible and serves customers across Dubai and the UAE. You can visit us or contact us for services.",
},
{
id: "5",
title: "How can I request your services?",
content:
"You can reach us by phone (04 234 4002), WhatsApp, or by visiting our office. Our team is ready to listen to your requirements and provide guidance on the best support for your needs.",
},
{
id: "6",
title: "What are your pricing and response times?",
content:
"We pride ourselves on competitive pricing and fast service delivery. For specific quotes and detailed pricing information, please contact our team directly. We typically respond within 24 hours to all inquiries.",
},
]}
inputPlaceholder="Enter your email address"
buttonText="Send Message"
termsText="We'll respond to your inquiry within 24 hours. Your information is secure and will never be shared."
onSubmit={(email) => console.log("Email submitted:", email)}
/>
</div>
@@ -141,4 +106,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}