import type { Metadata } from "next";
import { PageHeader } from "../components/ui/PageHeader";
import { Section } from "../components/ui/Section";
import { ButtonLink } from "../components/ui/ButtonLink";
import { ContactForm } from "../components/forms/ContactForm";
import { SocialLinks } from "../components/layout/SocialLinks";
import { CONTACT_CHANNELS } from "@/lib/site";
export const metadata: Metadata = {
title: "Contact",
description: "Get in touch with Highland Games Studio.",
};
const pressEmail =
CONTACT_CHANNELS.find((channel) => channel.label === "PRESS")?.email ??
CONTACT_CHANNELS[0].email;
/**
* Contact.
*
* The page used to stack three sections of identical weight — three mailto
* cards, then the form, then a press-kit block — which offered four ways to do
* one thing and ranked none of them. Now the form is the page, and every
* alternative sits in a column beside it: same information, one obvious
* default.
*/
export default function ContactPage() {
return (
<>