mirror of
https://github.com/feeddeck/feeddeck.git
synced 2026-05-07 12:36:52 -05:00
21 lines
377 B
TypeScript
21 lines
377 B
TypeScript
import Footer from "@/components/footer";
|
|
import Header from "@/components/header";
|
|
|
|
import "./globals.css";
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body className="bg-background text-onbackground">
|
|
<Header />
|
|
{children}
|
|
<Footer />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|