/* Contact page */ function ContactPage({ navigate }) { const { CONTACT } = window.MOBICO_DATA; return (
{/* Form */}
ENQUIRY

Request a quote.

{/* Sidebar */}
OFFICES

Two locations.

P.O. BOX
{CONTACT.po}
EMAIL
Please use the form opposite. A dedicated email address will be published once confirmed.
); } function LocationCard({ tag, name, addr, phone, hours, note, primary }) { return (
{tag}
{primary && PRIMARY}
{name}
{addr}
PHONE
{phone}
HOURS
{hours}
{note &&
{note}
}
); } window.ContactPage = ContactPage;