Initial commit

This commit is contained in:
Martin Prokoph
2024-02-07 17:31:28 +01:00
committed by GitHub
commit dbd4e1e2e1
58 changed files with 12225 additions and 0 deletions

9
tailwind.config.js Normal file
View File

@@ -0,0 +1,9 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {},
},
plugins: [],
darkMode: ['class', '.darkmode'],
}