"use client"; import { useState } from "react"; import Image from "next/image"; import { Phone, Mail, MapPin, Clock, UtensilsCrossed, ShoppingBag, Truck, ChefHat } from "lucide-react"; import SubpageLayout from "@/components/SubpageLayout"; import InnerBanner from "@/components/InnerBanner"; import AnimatedSection from "@/components/AnimatedSection"; const CornerOrnaments = () => ( <> ); export default function ContactPage() { const [formData, setFormData] = useState({ name: "", email: "", phone: "", subject: "", msg: "" }); const [submitted, setSubmitted] = useState(false); const handleSubmit = (e: React.FormEvent) => { e.preventDefault(); if (formData.name && formData.email && formData.msg) { setSubmitted(true); setTimeout(() => { setSubmitted(false); setFormData({ name: "", email: "", phone: "", subject: "", msg: "" }); }, 5000); } }; return ( {/* ── Inner Banner ── */} {/* ── TOP SECTION: Sandstone bg — Info + Form ── */}
{/* Sandstone bg image with pots and diyas on the bottom corners */}
Background
{/* Left Column: Info */}

Get In Touch

{/* Phone */}

Phone

+1 519-888-7459

{/* Email */}

Email

mydosaplacewaterloo@gmail.com

{/* Location */}

Location

922 Erb St. W Unit C3#3, Waterloo,
ON N2T 0C9, Canada

{/* Right Column: Form — Dark green theme card */}
{/* Background Image */}
{/* Ornate Gold Border inside */} {/*
*/}

Send Us A Message

{submitted ? (

Message Sent

Thank you for contacting us. We will get back to you shortly.

) : (
setFormData({ ...formData, name: e.target.value })} />
setFormData({ ...formData, email: e.target.value })} />
setFormData({ ...formData, phone: e.target.value })} />
setFormData({ ...formData, subject: e.target.value })} />