mirror of
https://github.com/fosrl/pangolin.git
synced 2026-01-29 06:10:47 +00:00
27 lines
640 B
TypeScript
27 lines
640 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
import { Roboto } from "next/font/google";
|
|
import { Toaster } from "@/components/ui/toaster"
|
|
|
|
export const metadata: Metadata = {
|
|
title: process.env.NEXT_PUBLIC_APP_NAME,
|
|
description: "",
|
|
};
|
|
|
|
const font = Roboto({ subsets: ["latin"], style: "normal", weight: "400" });
|
|
|
|
export default async function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html>
|
|
<body className={`${font.className}`}>
|
|
<main>{children}</main>
|
|
<Toaster />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|