drfeely.com/app/layout.tsx
2023-10-20 14:25:25 -05:00

22 lines
418 B
TypeScript

import Navbar from "@/components/Navbar";
import "./globals.css";
import Footer from "@/components/Footer";
import Contact from "@/components/Contact";
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>
<Navbar></Navbar>
{children}
<Contact></Contact>
<Footer></Footer>
</body>
</html>
);
}