diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 2d7d862..00c2bb1 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,15 +2,27 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FaqBase from '@/components/sections/faq/FaqBase'; -import FooterBase from '@/components/sections/footer/FooterBase'; -import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import { Mail, MapPin, MessageCircle, MessageSquare, Phone } from "lucide-react"; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { MapPin, Phone, Mail } from 'lucide-react'; +import type { Metadata } from "next"; + +export const metadata: Metadata = { + title: "Contact Carlstra Aero Ltd - Get in Touch", description: "Reach out to Carlstra Aero Ltd for inquiries, tender submissions, or partnership opportunities. Find our company details, location, and contact form.", openGraph: { + title: "Carlstra Aero Ltd Contact Information", description: "Connect with Carlstra Aero Ltd for reliable supply, logistics, and technical solutions. Use our contact form or find our address and phone number.", url: "https://www.carlstraaero.com/contact", images: [ + { + url: "http://img.b2bpic.net/free-photo/portrait-beautiful-african-woman-glass-smiling-talking-phone_176420-12470.jpg", alt: "Contact Carlstra Aero Ltd"}, + ], + }, +}; + +export default function ContactPage() { + const handleSubmit = (email: string) => { + alert(`Thank you for your message! We will get back to you at ${email}.`); + // In a real application, you would send this email to a backend service + }; -export default function LandingPage() { return ( - + -
- -
+
+ +
-
- -
+
+
+

Our Details & Location

+
+
+ +

Address

+

Carlstra Aero Ltd

+

Acme Building, 123 Industrial Area

+

Nairobi, Kenya

+
+
+ +

Phone

+

+254 7XX XXX XXX

+

Monday - Friday, 9 AM - 5 PM (EAT)

+
+
+ +

Email

+

info@carlstraaero.com

+

We typically respond within 24 hours.

+
+
+
+
-
- -
- -
- -
- - +
);