Files
AnimeTV-Frontend/app/layout.tsx
Rafi Arrafif 28d81d9792 💩 create hero UI wrapper
still need fix or downgrade tailwind to v3
2025-07-09 09:58:01 +07:00

19 lines
489 B
TypeScript

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>
<HeroUIWrapper>{children}</HeroUIWrapper>
</GeistFontProvider>
</body>
</html>
);
};
export default RootLayout;