drfeely.com/app/(pages)/office/page.tsx

18 lines
453 B
TypeScript
Raw Normal View History

2024-10-04 02:31:06 +00:00
import { Metadata } from "next/types";
2024-08-02 19:42:31 +00:00
import OfficeInfo from "./views/OfficeInfo";
2024-10-04 02:31:06 +00:00
export const metadata: Metadata = {
title: "Private Practice | Dr. Feely",
description: `Dr. Feely is in private practice in Carmel, IN, outside of Indianapolis. His practice is limited to difficult neuromusculoskeletal pain conditions.`,
};
2024-08-02 19:42:31 +00:00
const Office = () => {
return (
<main>
<OfficeInfo></OfficeInfo>
</main>
);
};
export default Office;