'use client'; import { useState } from 'react'; import type { Metadata } from 'next'; import styles from './contact.module.css'; export default function ContactPage() { const [formData, setFormData] = useState({ name: '', email: '', company: '', subject: '', message: '', }); const handleChange = (e: React.ChangeEvent) => { setFormData({ ...formData, [e.target.name]: e.target.value, }); }; const handleSubmit = (e: React.FormEvent) => { e.preventDefault(); // Handle form submission console.log('Form submitted:', formData); alert('Thank you for your message! We\'ll get back to you soon.'); }; const contactInfo = [ { icon: '📧', title: 'Email', value: 'support@socialbuddy.com', link: 'mailto:support@socialbuddy.com', }, { icon: '💬', title: 'Live Chat', value: 'Available 24/7', link: '#', }, { icon: '📞', title: 'Phone', value: '+1 (555) 123-4567', link: 'tel:+15551234567', }, { icon: '📍', title: 'Office', value: 'San Francisco, CA', link: '#', }, ]; return (
{/* Hero Section */}

Get in Touch

Have a question or need help? We're here for you 24/7. Reach out and let's start a conversation.

{/* Contact Info Cards */}
{contactInfo.map((info, index) => (
{info.icon}

{info.title}

{info.value}

))}
{/* Contact Form Section */}

Send Us a Message

Fill out the form and our team will get back to you within 24 hours.

Quick response time
Expert support team
Personalized solutions

Follow Us