import type { Metadata } from 'next'
import ContactForm from './ContactForm'

export const metadata: Metadata = {
  title: 'Contact Us',
  description: 'Get in touch with the Plymouth Metro campaign team — questions, press enquiries, volunteering, and partnerships.',
}

export default function ContactPage() {
  return <ContactForm />
}
