initial commit

This commit is contained in:
2024-12-06 22:51:10 +00:00
parent 985ede6738
commit 9d5f882892
22 changed files with 64 additions and 326 deletions

10
tailwind.config.mjs Normal file
View File

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