adds conical bg and tailwind.

not yet animated, but should be doable with @property.
This commit is contained in:
2025-06-22 18:34:29 +02:00
parent ce5ec2a763
commit 2a64d05b71
5 changed files with 807 additions and 9 deletions
+3 -1
View File
@@ -1,3 +1,5 @@
import "./style.css";
export default function RootLayout({
children,
}: {
@@ -5,7 +7,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body>{children}</body>
<body className="bg-game-show">{children}</body>
</html>
);
}