frondend/app/layout.tsx

40 lines
845 B
TypeScript
Raw Normal View History

2024-09-24 12:47:24 +08:00
import type { Metadata } from "next";
import localFont from "next/font/local";
import "./globals.css";
2024-10-05 15:04:17 +08:00
import { Toaster } from "react-hot-toast";
2024-09-24 12:47:24 +08:00
const geistSans = localFont({
src: "./fonts/GeistVF.woff",
variable: "--font-geist-sans",
weight: "100 900",
});
const geistMono = localFont({
src: "./fonts/GeistMonoVF.woff",
variable: "--font-geist-mono",
weight: "100 900",
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
export default function RootLayout({
2024-10-05 15:04:17 +08:00
2024-09-24 12:47:24 +08:00
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
2024-10-05 15:04:17 +08:00
className={`${geistSans.variable} ${geistMono.variable} antialiased bg-[#F6E5E9]`}
2024-09-24 12:47:24 +08:00
>
2024-10-05 15:04:17 +08:00
<Toaster position="bottom-center" />
2024-09-24 12:47:24 +08:00
{children}
2024-10-05 15:04:17 +08:00
2024-09-24 12:47:24 +08:00
</body>
</html>
);
}
2024-10-05 15:04:17 +08:00