drfeely.com/app/layout.tsx
2023-07-23 17:26:35 -05:00

27 lines
679 B
TypeScript

import Navbar from "@/components/Navbar";
import "./globals.css";
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Dr. Richard Feely",
description: `Dr. Feely is a highly accomplished physician with over 25 years
of experience in osteopathic medicine, acupuncture, herbal medicine, and
family practice. He specializes in the treatment of neuromusculoskeletal
pain, especially back pain, neck pain and headaches.`,
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>
<Navbar></Navbar>
{children}
</body>
</html>
);
}