feat: initial login page

with separate file for future util endpoints,
also dummy sessions inteface
This commit is contained in:
efim
2023-10-29 08:26:35 +00:00
parent c19eb9104e
commit bde58a0eab
9 changed files with 273 additions and 29 deletions

View File

@@ -1,8 +1,14 @@
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
module.exports = {
content: ["./routes/templates/**/*.gohtml"],
theme: {
extend: {},
extend: {
colors: {
'main': colors.orange,
},
},
},
plugins: [],
}