overhaul frontend, typography, noise pattern, badge, notify audio

This commit is contained in:
2024-12-22 08:51:15 -06:00
parent a0417e0b19
commit 6f7139d5d7
11 changed files with 604 additions and 41 deletions

View File

@@ -1,8 +1,13 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {},
},
plugins: [],
}
content: ["./src/**/*.{astro,html,js,jsx,ts,tsx}"],
theme: {
extend: {
fontFamily: {
bebas: ["Bebas Neue", "sans-serif"],
sans: ["Inter", "sans-serif"],
},
},
},
plugins: [require("@tailwindcss/typography")],
};