Added routes and navbar

This commit was merged in pull request #2.
This commit is contained in:
Ebube
2024-03-05 15:57:26 +01:00
parent c43a21794f
commit 4e60c4b4c7
23 changed files with 2125 additions and 214 deletions
+15
View File
@@ -0,0 +1,15 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
darkMode: "class",
theme: {
extend: {
colors: {},
screens: {
xxs: "400px",
xxl: "1900px",
},
},
},
plugins: [],
};