"use client"; import type React from "react"; import { useState } from "react"; import { Facebook, Twitter, Linkedin, Instagram, MapPin } from "lucide-react"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Textarea } from "@/components/ui/textarea"; export default function ContactPage() { const [formData, setFormData] = useState({ name: "", email: "", phone: "", company: "", message: "", }); const handleChange = ( e: React.ChangeEvent ) => { const { name, value } = e.target; setFormData((prev) => ({ ...prev, [name]: value })); }; const handleSubmit = (e: React.FormEvent) => { e.preventDefault(); console.log("Form submitted:", formData); // toast({ // title: "Message sent!", // description: "We'll be in touch with you shortly.", // }); // Reset form setFormData({ name: "", email: "", phone: "", company: "", message: "", }); }; return (
{/* Left Column - Contact Information */}

Get in touch
with us directly

We are here to help you! Tell us how we can help & we'll be in touch with an expert within the next 24 hours.

Send us an email:

contact@adspillar.com

Give us a call:

+880 1784-493232

Follow us:

{/* Right Column - Contact Form */}