Merge branch 'per-subdomain-contact-pages' (task 09)
# Conflicts: # src/routes/contact.tsx
This commit is contained in:
20
src/routes/gaze/contact.tsx
Normal file
20
src/routes/gaze/contact.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
import { ContactForm } from "~/components/ContactForm";
|
||||
|
||||
/**
|
||||
* Gaze contact page (`gaze.freno.me/contact`).
|
||||
*
|
||||
* Thin wrapper over the shared `<ContactForm>` (task 09). Site awareness —
|
||||
* subject prefix `[Gaze]`, recipient label, heading, and PageHead metadata —
|
||||
* is derived from `useSite()` inside the component via `CONTACT_CONTEXT.gaze`,
|
||||
* so this route needs no explicit props.
|
||||
*
|
||||
* vercel.json rewrites `gaze.freno.me/*` → the internal `/gaze/*` route
|
||||
* prefix; the browser URL stays `gaze.freno.me/contact`.
|
||||
*
|
||||
* Acceptance: `gaze.localhost:3000/contact` renders the contact form with
|
||||
* Gaze branding; submissions email `michael@freno.me` with subject
|
||||
* `[Gaze] Contact Request`.
|
||||
*/
|
||||
export default function GazeContactPage() {
|
||||
return <ContactForm />;
|
||||
}
|
||||
Reference in New Issue
Block a user