Start working on docs site.

This commit is contained in:
Joshua Bemenderfer
2023-02-11 22:30:10 -05:00
parent cb09652f61
commit bc2fc78c96
37 changed files with 1747 additions and 3087 deletions

14
docs/tailwind.config.js Normal file
View File

@@ -0,0 +1,14 @@
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: ['./src/**/*.html', './src/**/*.tce'],
theme: {
extend: {
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
},
},
},
variants: {},
plugins: [require('@tailwindcss/typography')],
};