21 lines
611 B
TypeScript
21 lines
611 B
TypeScript
import { Metadata } from "next";
|
|
import ArtsForDocs from "./views/ArtsForDocs";
|
|
import ArtsForPatients from "./views/ArtsForPatients";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Articles | Dr. Feely",
|
|
description: `The location of Dr. Richard A. Feely's medical articles. Dr.
|
|
Feely is a highly accomplished physician with over 25 years of experience in
|
|
osteopathic medicine, acupuncture, herbal medicine, and family practice.`,
|
|
};
|
|
|
|
const Articles = () => {
|
|
return (
|
|
<main>
|
|
<ArtsForPatients></ArtsForPatients>
|
|
<ArtsForDocs></ArtsForDocs>
|
|
</main>
|
|
);
|
|
};
|
|
|
|
export default Articles;
|