chore: initial scaffold

This commit is contained in:
Julien Calixte
2026-06-20 01:28:32 +02:00
commit 68a8c303d9
21 changed files with 1800 additions and 0 deletions

17
src/style.css Normal file
View File

@@ -0,0 +1,17 @@
/* The font @import MUST come first — before @import "tailwindcss" — because
Tailwind inlines its import into real CSS rules, and the CSS spec requires
@import to precede all other rules. If it comes second, the production build
warns ("@import must precede all rules…") and browsers silently DROP the
font import, so the custom font never loads. */
@import url("https://fonts.coollabs.io/css2?family=Inter:wght@400;500;600;700&display=swap");
@import "tailwindcss";
@plugin "daisyui";
@plugin "daisyui/theme" {
name: "light";
default: true;
--color-primary: #16a34a;
}
@theme {
--font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}