2023-07-23 22:26:35 +00:00
|
|
|
import Navbar from "@/components/Navbar";
|
|
|
|
import "./globals.css";
|
|
|
|
import type { Metadata } from "next";
|
2023-07-27 04:40:20 +00:00
|
|
|
import Footer from "@/components/Footer";
|
2023-07-23 14:44:58 +00:00
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
2023-07-25 03:14:18 +00:00
|
|
|
title: "Dr. Richard Feely | Home",
|
2023-07-23 22:26:35 +00:00
|
|
|
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.`,
|
|
|
|
};
|
2023-07-23 14:44:58 +00:00
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
children,
|
|
|
|
}: {
|
2023-07-23 22:26:35 +00:00
|
|
|
children: React.ReactNode;
|
2023-07-23 14:44:58 +00:00
|
|
|
}) {
|
|
|
|
return (
|
|
|
|
<html lang="en">
|
2023-07-23 22:26:35 +00:00
|
|
|
<body>
|
|
|
|
<Navbar></Navbar>
|
|
|
|
{children}
|
2023-07-27 04:40:20 +00:00
|
|
|
<Footer></Footer>
|
2023-07-23 22:26:35 +00:00
|
|
|
</body>
|
2023-07-23 14:44:58 +00:00
|
|
|
</html>
|
2023-07-23 22:26:35 +00:00
|
|
|
);
|
2023-07-23 14:44:58 +00:00
|
|
|
}
|