Create person node

This commit is contained in:
2024-04-28 21:05:37 +02:00
parent 2f795d6901
commit a28a6fa675
9 changed files with 2054 additions and 278 deletions

View File

@@ -0,0 +1,11 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,svelte,js,ts}'],
theme: {
extend: {}
},
daisyui: {
themes: ['light', 'dark', 'cyberpunk', 'synthwave', 'retro', 'roboto', 'dracula']
},
plugins: [require('daisyui')]
};