Initial commit from create-remix

This commit is contained in:
Kar l5
2024-07-21 22:19:19 +05:30
commit b3e4cbe56f
14 changed files with 474 additions and 0 deletions

9
tailwind.config.ts Normal file
View File

@@ -0,0 +1,9 @@
import type { Config } from "tailwindcss";
export default {
content: ["./app/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {},
},
plugins: [],
} satisfies Config;