fosrl.pangolin/src/app/layout.tsx
2024-10-06 12:39:05 -04:00

24 lines
534 B
TypeScript

import type { Metadata } from "next";
import "./globals.css";
import { Roboto } from "next/font/google";
export const metadata: Metadata = {
title: "Pangolin",
description: "",
};
const font = Roboto({ subsets: ["latin"], style: "normal", weight: "400" });
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html>
<body className={`${font.className}`}>
<main>{children}</main>
</body>
</html>
);
}