12 lines
324 B
TypeScript
12 lines
324 B
TypeScript
import ContactClient from "./contactClient"
|
|
|
|
export const metadata = {
|
|
title: "Contact Us - Ebb'nFlow Therapeutics",
|
|
description:
|
|
"Get in touch with Ebb'nFlow Therapeutics. Visit us in downtown St. Catharines or book your appointment online.",
|
|
}
|
|
|
|
export default function ContactPage() {
|
|
return <ContactClient />
|
|
}
|