First commit

This commit is contained in:
Jorge Vargas 2024-08-07 20:19:30 -06:00
commit 8c9c148733
14 changed files with 9769 additions and 0 deletions

8
tailwind.config.mjs Normal file
View file

@ -0,0 +1,8 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {},
},
plugins: [],
}