first commit

This commit is contained in:
Harivansh Rathi 2024-11-18 21:27:52 -05:00
commit 224b56efc0
17 changed files with 3239 additions and 0 deletions

11
tailwind.config.js Normal file
View file

@ -0,0 +1,11 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}