Restructure with dark/light mode toggle component

This commit is contained in:
2024-03-10 00:45:07 -06:00
parent ac35c6e647
commit fa536d92d9
14 changed files with 651 additions and 124 deletions

9
tailwind.config.mjs Normal file
View File

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