initial commit

This commit is contained in:
zackartz 2024-05-05 16:19:04 -04:00
commit 8a8f7c6f62
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
146 changed files with 8471 additions and 0 deletions

11
tailwind.config.mjs Normal file
View file

@ -0,0 +1,11 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {},
fontFamily: {
sans: ["Iosevka Web", "ui-monospace", "monospace"],
},
},
plugins: [require("@tailwindcss/typography")],
};