mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-24 04:34:55 +02:00
24 lines
534 B
TypeScript
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>
|
|
);
|
|
}
|