1
0
Fork 0

feat: initial commit

- `pnpm create t3-app@latest`
This commit is contained in:
Vojtěch Mareš 2023-06-25 09:33:59 +02:00
commit e06ecdf652
Signed by: vojtech.mares
GPG key ID: C6827B976F17240D
20 changed files with 3524 additions and 0 deletions

9
tailwind.config.ts Normal file
View file

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