fosrl.pangolin/src/app/layout.tsx

25 lines
510 B
TypeScript
Raw Normal View History

2024-09-27 19:48:49 -04:00
import type { Metadata } from "next";
import "./globals.css";
2024-10-06 11:13:50 -04:00
import { Noto_Sans } from "next/font/google";
2024-09-27 19:48:49 -04:00
export const metadata: Metadata = {
2024-09-27 21:39:03 -04:00
title: "Pangolin",
description: "",
2024-09-27 19:48:49 -04:00
};
2024-10-06 11:13:50 -04:00
const inter = Noto_Sans({ subsets: ["latin"] });
2024-09-27 19:48:49 -04:00
export default function RootLayout({
2024-09-27 21:39:03 -04:00
children,
2024-09-27 19:48:49 -04:00
}: Readonly<{
2024-09-27 21:39:03 -04:00
children: React.ReactNode;
2024-09-27 19:48:49 -04:00
}>) {
2024-09-27 21:39:03 -04:00
return (
2024-10-06 11:13:50 -04:00
<html>
<body className={`${inter.className}`}>
<main>{children}</main>
</body>
2024-09-27 21:39:03 -04:00
</html>
);
2024-09-27 19:48:49 -04:00
}