Initial commit with working front page and partial search

This commit is contained in:
Krzysztof Płaczek
2025-07-27 23:01:00 +02:00
parent dad6213877
commit 4174396ca1
6 changed files with 4388 additions and 1 deletions

12
tailwind.config.js Normal file
View File

@@ -0,0 +1,12 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./index.html',
'./src/**/*.{html,js}'
],
theme: {
extend: {},
},
plugins: [],
}