feat: initial romm web ui architecture, bento grids, and spatial gamepad bindings

This commit is contained in:
roormonger
2026-03-23 15:31:41 -04:00
commit 9e8f148a10
40 changed files with 9935 additions and 0 deletions

27
tailwind.config.ts Normal file
View File

@@ -0,0 +1,27 @@
import type { Config } from "tailwindcss";
import { heroui } from "@heroui/theme";
const config: Config = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
animation: {
"background-position-spin": "background-position-spin 3000ms infinite alternate",
},
keyframes: {
"background-position-spin": {
"0%": { backgroundPosition: "top center" },
"100%": { backgroundPosition: "bottom center" },
},
},
},
},
darkMode: "class",
plugins: [heroui()],
};
export default config;