import { Mail, MapPin, Phone } from 'lucide-react';

export const metadata = { title: 'Contact', description: 'Contact Aidni Global LLP in Ahmedabad, India.' };

export default function ContactPage() {
  return <main><section className="bg-gradient-to-br from-blue-950 to-slate-950 py-20 text-white"><div className="section-container"><p className="kicker text-blue-300">Contact</p><h1 className="mt-4 text-4xl font-black sm:text-6xl">Get In Touch</h1><p className="mt-5 max-w-2xl text-lg text-blue-100">For consulting, business development, market research, or investment facilitation, contact us anytime.</p></div></section><section className="section-container py-20 grid gap-10 lg:grid-cols-2"><div className="space-y-6"><div className="flex gap-4"><Phone className="text-blue-700" /><div><p>+91 79 3590 8656</p><p>+91 98257 28291</p><p>+91 90990 28291</p></div></div><div className="flex gap-4"><MapPin className="text-blue-700" /><p>407-408, Patel Avenue, SG highway, Ahmedabad. India</p></div><div className="flex gap-4"><Mail className="text-blue-700" /><div><p>info@aidniglobal.in</p><p>office@aidniglobal.in</p></div></div></div><form className="rounded-3xl bg-slate-50 p-8 shadow-sm ring-1 ring-slate-200" action="/api/contact" method="post"><div className="grid gap-4 sm:grid-cols-2"><input name="firstName" required placeholder="First name" className="rounded-xl border p-3" /><input name="lastName" required placeholder="Last name" className="rounded-xl border p-3" /></div><input name="email" type="email" required placeholder="Email" className="mt-4 w-full rounded-xl border p-3" /><textarea name="message" required placeholder="Comment or Message" rows={6} className="mt-4 w-full rounded-xl border p-3" /><button className="mt-4 rounded-full bg-blue-700 px-8 py-3 font-bold text-white hover:bg-blue-800">Submit</button></form></section></main>;
}
