import type { Metadata } from "next"; import { ContactForm } from "../components/ContactForm"; export const metadata: Metadata = { title: "Contact", description: "Get in touch with Highland Games Studio.", }; const channels = [ { label: "GENERAL", value: "hello@highlandgamesstudio.com", href: "mailto:hello@highlandgamesstudio.com", }, { label: "PRESS", value: "press@highlandgamesstudio.com", href: "mailto:press@highlandgamesstudio.com", }, { label: "BUSINESS", value: "business@highlandgamesstudio.com", href: "mailto:business@highlandgamesstudio.com", }, ]; export default function ContactPage() { return (

— GET IN TOUCH

SAY HELLO.

Press inquiries, business opportunities, fan messages — all are welcome. Pick a channel and reach out.

{channels.map((c) => (

{c.label}

{c.value}

))}

— OR

SEND US A MESSAGE

Prefer not to use email? Drop your message here and we'll get back to you.

PRESS KIT

Logos, screenshots and fact sheets for our games will be available here soon. In the meantime, drop us an email and we'll send assets directly.

REQUEST PRESS KIT →
); }