Initial Commit

This commit is contained in:
Ryan Malloy 2025-03-14 14:31:36 -06:00
commit 759b0f7814
27 changed files with 5526 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: [],
}