mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-10 14:04:51 +02:00
26 lines
620 B
TypeScript
26 lines
620 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
import { Inter, 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 = Inter({ subsets: ["latin"] });
|
|
|
|
export default async function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html>
|
|
<body className={`${font.className} pb-3`}>
|
|
<main>{children}</main>
|
|
<Toaster />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|