initial commit

This commit is contained in:
Aidan 2025-01-05 14:33:52 -05:00
parent 60ed5888fa
commit 77990f0708
23 changed files with 483 additions and 121 deletions

18
tailwind.config.ts Normal file
View file

@ -0,0 +1,18 @@
import type { Config } from "tailwindcss";
export default {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
},
},
},
plugins: [],
} satisfies Config;