diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e69de29..ace026d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -0,0 +1,1387 @@ +import type { Metadata } from "next"; +import { Inter } from "next/font/google"; +import "./globals.css"; + +const inter = Inter({ subsets: ["latin"] }); + +export const metadata: Metadata = { + title: "Royal Care Medical Center", description: "24/7 Medical & Laboratory Services in Qalqilyah"}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + +
{children} +