working chakura-ui

This commit is contained in:
2024-11-21 13:03:00 -05:00
parent ada465af64
commit 7b38c8a082
12 changed files with 85 additions and 70 deletions

View File

@@ -1,15 +1,18 @@
import { Provider } from "../components/ui/provider"
import "../styles/globals.css";
export const metadata = {
title: 'Next.js',
description: 'Generated by Next.js',
}
export default function RootLayout({ children,}: {
children: React.ReactNode
}) {
export default function RootLayout(props: { children: React.ReactNode }) {
const { children } = props;
return (
<html lang="en">
<body>{children}</body>
<html suppressHydrationWarning>
<body>
<Provider>{children}</Provider>
</body>
</html>
)
}