fenghuo/apps/web/app/layout.tsx

24 lines
498 B
TypeScript
Raw Normal View History

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