Update src/app/contact/page.tsx

This commit is contained in:
2026-03-25 02:54:22 +00:00
parent 5937c64290
commit db8805912b

View File

@@ -1,4 +1,4 @@
<![CDATA["use client";
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Navbar } from "@/components/Navbar";
@@ -13,7 +13,7 @@ export default function ContactPage() {
const navItems = [
{ href: "/", label: "Home" },
{ href: "/about", label: "About" },
{ href: "/contact", label: "Contact" },
{ href: "/contact", label: "Contact" }
];
return (
@@ -35,7 +35,7 @@ export default function ContactPage() {
logoAlt="Hababi Tech Logo"
navItems={navItems}
ctaButtons={[
{ href: "/contact", label: "Get Started" },
{ href: "/contact", label: "Get Started" }
]}
/>
</div>
@@ -47,12 +47,12 @@ export default function ContactPage() {
formFields={[
{ name: "name", label: "Your Name", type: "text", placeholder: "John Doe" },
{ name: "email", label: "Your Email", type: "email", placeholder: "john.doe@example.com" },
{ name: "message", label: "Your Message", type: "textarea", placeholder: "How can we help you?" },
{ name: "message", label: "Your Message", type: "textarea", placeholder: "How can we help you?" }
]}
contactInfo={[
{ icon: Mail, text: "info@hababitech.com", href: "mailto:info@hababitech.com" },
{ icon: Phone, text: "+1 (555) 123-4567", href: "tel:+15551234567" },
{ icon: MapPin, text: "123 AI Boulevard, Future City, TX 78701", href: "https://maps.google.com/?q=123+AI+Boulevard,+Future+City,+TX+78701" },
{ icon: MapPin, text: "123 AI Boulevard, Future City, TX 78701", href: "https://maps.google.com/?q=123+AI+Boulevard,+Future+City,+TX+78701" }
]}
/>
</div>
@@ -63,11 +63,14 @@ export default function ContactPage() {
description="Find answers to common questions about Hababi Tech's AI and robotics solutions."
items={[
{
question: "What industries do you serve?", answer: "We serve a wide range of industries including manufacturing, logistics, healthcare, and finance, tailoring our AI and robotics solutions to specific sector needs."},
question: "What industries do you serve?", answer: "We serve a wide range of industries including manufacturing, logistics, healthcare, and finance, tailoring our AI and robotics solutions to specific sector needs."
},
{
question: "How do you ensure data security with your AI systems?", answer: "Data security is paramount. We implement advanced encryption, robust access controls, and adhere to global compliance standards to protect all client data."},
question: "How do you ensure data security with your AI systems?", answer: "Data security is paramount. We implement advanced encryption, robust access controls, and adhere to global compliance standards to protect all client data."
},
{
question: "Can your solutions integrate with existing infrastructure?", answer: "Yes, our AI interfaces and robotic systems are designed for flexible integration, compatible with most existing IT infrastructures and operational setups."},
question: "Can your solutions integrate with existing infrastructure?", answer: "Yes, our AI interfaces and robotic systems are designed for flexible integration, compatible with most existing IT infrastructures and operational setups."
}
]}
/>
</div>
@@ -79,13 +82,16 @@ export default function ContactPage() {
items={[
{
icon: Headset,
title: "Dedicated Support", description: "Our team provides comprehensive support from consultation to post-implementation, ensuring your success."},
title: "Dedicated Support", description: "Our team provides comprehensive support from consultation to post-implementation, ensuring your success."
},
{
icon: Clock,
title: "Rapid Response", description: "We pride ourselves on quick turnaround times for inquiries and support requests."},
title: "Rapid Response", description: "We pride ourselves on quick turnaround times for inquiries and support requests."
},
{
icon: MessageCircle,
title: "Tailored Solutions", description: "Receive customized advice and solutions that perfectly align with your business objectives."},
title: "Tailored Solutions", description: "Receive customized advice and solutions that perfectly align with your business objectives."
}
]}
/>
</div>
@@ -99,7 +105,7 @@ export default function ContactPage() {
socialLinks={[
{ href: "#", icon: Mail },
{ href: "#", icon: Phone },
{ href: "#", icon: MapPin },
{ href: "#", icon: MapPin }
]}
copyright="© 2024 Hababi Tech. All rights reserved."
/>
@@ -107,4 +113,3 @@ export default function ContactPage() {
</ThemeProvider>
);
}
]]>