Add tailwindcss, revamp index with details

This commit is contained in:
2024-04-23 19:45:48 -05:00
parent e4334ece7a
commit b00df74158
9 changed files with 1548 additions and 25 deletions

12
tailwind.config.js Normal file
View File

@@ -0,0 +1,12 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./**/*.{html,js,rs}"],
theme: {
fontFamily: {
'mono': ['"Liberation Mono"', 'monospace'],
},
extend: {},
},
plugins: [],
}