💩 create hero UI wrapper
still need fix or downgrade tailwind to v3
This commit is contained in:
@ -1,12 +1,15 @@
|
||||
import "./globals.css";
|
||||
import GeistFontProvider from "@/providers/fonts/GeistFontProvider";
|
||||
import HeroUIWrapper from "@/providers/HeroUIWrapper";
|
||||
import React from "react";
|
||||
|
||||
const RootLayout = ({ children }: Readonly<{ children: React.ReactNode }>) => {
|
||||
return (
|
||||
<html lang="en" className="dark">
|
||||
<body>
|
||||
<GeistFontProvider>{children}</GeistFontProvider>
|
||||
<GeistFontProvider>
|
||||
<HeroUIWrapper>{children}</HeroUIWrapper>
|
||||
</GeistFontProvider>
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user