/* Contact page */
function ContactPage({ navigate }) {
const { CONTACT } = window.MOBICO_DATA;
return (
{/* Form */}
{/* Sidebar */}
OFFICES
Two locations.
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}
HOURS
{hours}
{note &&
{note}
}
);
}
window.ContactPage = ContactPage;