2025-05-26 19:56:34 +08:00
|
|
|
import '@repo/ui/globals.css';
|
2025-05-18 14:39:06 +08:00
|
|
|
|
2025-02-18 15:35:03 +08:00
|
|
|
import { Providers } from '@/components/providers';
|
2025-05-18 14:39:06 +08:00
|
|
|
import type { Metadata } from 'next';
|
2025-02-18 15:35:03 +08:00
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
2025-03-02 00:23:31 +08:00
|
|
|
title: 'Create Next App',
|
|
|
|
description: 'Generated by create next app',
|
2025-02-18 15:35:03 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
export default function RootLayout({
|
2025-03-02 00:23:31 +08:00
|
|
|
children,
|
2025-02-18 15:35:03 +08:00
|
|
|
}: Readonly<{
|
2025-03-02 00:23:31 +08:00
|
|
|
children: React.ReactNode;
|
2025-02-18 15:35:03 +08:00
|
|
|
}>) {
|
2025-03-02 00:23:31 +08:00
|
|
|
return (
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
2025-05-27 08:56:07 +08:00
|
|
|
<body className={`font-sans antialiased `}>
|
2025-03-02 00:23:31 +08:00
|
|
|
<Providers>{children}</Providers>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
);
|
2025-02-18 15:35:03 +08:00
|
|
|
}
|