feat(web): bootstrap react vite tailwind shadcn stack

This commit is contained in:
2026-04-05 02:31:18 +08:00
parent d7f27eaf1e
commit 579d63d39d
25 changed files with 3986 additions and 11 deletions
+21
View File
@@ -0,0 +1,21 @@
@import "@fontsource-variable/geist";
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--radius: 0.625rem;
--background: #f6f8f7;
--foreground: #122117;
--primary: #0a7a5a;
--primary-foreground: #ffffff;
--border: #d7e2db;
font-family: "Geist Variable", "Noto Sans SC", sans-serif;
}
body {
margin: 0;
min-height: 100vh;
background: var(--background);
color: var(--foreground);
}