initial commit

This commit is contained in:
2025-01-23 11:16:33 -05:00
commit 25cabeb8df
57 changed files with 11214 additions and 0 deletions

11
postcss.config.js Normal file
View File

@@ -0,0 +1,11 @@
import tailwind from "tailwindcss";
import autoprefixer from "autoprefixer";
/** @type {import('postcss-load-config').Config} */
const config = {
plugins: [
autoprefixer,
tailwind
]
}
export default config