-
+
diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php
index 25caba5..4ac4df3 100644
--- a/resources/views/welcome.blade.php
+++ b/resources/views/welcome.blade.php
@@ -5,13 +5,23 @@
-
Heimerdinger.lol
-
-
+
+
+
+
+
+
+
+
+
+
+
Heimerdinger.LoL
+
@vite('resources/css/app.css')
+ @vite('resources/js/app.js')
-
+
diff --git a/tailwind.config.js b/tailwind.config.js
index 4212e80..5e2c005 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -1,12 +1,24 @@
/** @type {import('tailwindcss').Config} */
+const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
+ darkMode: "class",
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
+ "./node_modules/flowbite/**/*.js",
],
theme: {
- extend: {},
+ extend: {
+ fontFamily: {
+ sans: [
+ "Inter var",
+ "Inter",
+ "sans-serif",
+ ...defaultTheme.fontFamily.sans,
+ ],
+ },
+ },
},
- plugins: [],
+ plugins: [require("flowbite/plugin")],
};