feat: initial bootstrappy stuff

This commit is contained in:
Aarnav Tale 2024-03-25 17:50:58 -04:00
parent 70c42751e3
commit 025cc4f6f1
No known key found for this signature in database
12 changed files with 6697 additions and 11211 deletions

10
tailwind.config.ts Normal file
View file

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