import type { Metadata } from "next"; import Link from "next/link"; import { ContactForm } from "@/components/contact/ContactForm"; export const metadata: Metadata = { title: "Contact Us", description: "Get in touch with The Pet Loft. Postal address, support and service emails, and send us an inquiry.", }; function FacebookIcon() { return ( ); } function InstagramIcon() { return ( ); } function TwitterIcon() { return ( ); } const socialLinks = [ { href: "https://facebook.com", label: "Facebook", icon: FacebookIcon }, { href: "https://instagram.com", label: "Instagram", icon: InstagramIcon }, { href: "https://twitter.com", label: "Twitter / X", icon: TwitterIcon }, ]; export default function ContactUsPage() { return (

Contact Us

We'd love to hear from you. Use the form to send an inquiry or find our details below.

{/* Left column: address, emails, socials */}

Postal address

The Pet Loft
123 High Street
London, SW1A 1AA
United Kingdom

Support and service emails

Follow us

{socialLinks.map(({ href, label, icon: Icon }) => ( ))}
{/* Right column: Inquiries form */}

Inquiries

Send us a message and we'll get back to you as soon as we can.

← Back to shop

); }