"use client"; import { useState, type FormEvent } from "react"; import { PageHero } from "@/components/marketing/page-hero"; import { PlaceholderNotice } from "@/components/marketing/placeholder-notice"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; export default function ContactPage() { const [sent, setSent] = useState(false); function onSubmit(e: FormEvent) { e.preventDefault(); // Email delivery (mittera.eu) wires later — UI is real now. setSent(true); } return ( <>
Submit is stubbed for now — you will see a confirmation, but no email is sent yet. {sent ? (
Thanks — your message is noted in this preview. Live delivery lands when email is wired.
) : (