fake_shop/app/layout.js

40 lines
850 B
JavaScript
Raw Normal View History

2025-02-07 18:04:25 +08:00
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
2025-02-10 19:24:19 +08:00
import { Toaster } from "react-hot-toast";
2025-02-07 18:04:25 +08:00
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
export default function RootLayout({ children }) {
return (
2025-02-10 19:24:19 +08:00
<html lang="en" data-theme="light">
2025-02-07 18:04:25 +08:00
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
2025-02-10 19:24:19 +08:00
<Toaster
toastOptions={{
duration: 2000,
style: {
background: "#333",
color: "#fff",
},
}}
/>
2025-02-07 18:04:25 +08:00
</body>
</html>
);
}