add content to the page

This commit is contained in:
Kentai Radiquum 2024-05-19 15:23:29 +05:00
parent f7d591e9f8
commit adaa5a8c9b
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
10 changed files with 2076 additions and 4 deletions

View file

@ -1,7 +1,15 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}", "./node_modules/flowbite/**/*.js"],
content: [
"./index.html",
"./src/**/*.{html,js}",
"./public/js/cards.js",
"./node_modules/flowbite/**/*.js",
],
theme: {
container: {
center: true,
},
extend: {},
},
plugins: [require("flowbite/plugin")],