first commit

This commit is contained in:
2026-03-20 19:40:17 +08:00
commit 8dcebff7a6
41 changed files with 9322 additions and 0 deletions

30
frontend/app/globals.css Normal file
View File

@@ -0,0 +1,30 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
html {
height: 100%;
}
body {
min-height: 100%;
margin: 0;
color: #111827;
background:
radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 30%),
radial-gradient(circle at top right, rgba(15, 118, 110, 0.12), transparent 24%),
linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}
* {
box-sizing: border-box;
}
.react-flow__attribution {
display: none;
}
.react-flow__node:focus,
.react-flow__node:focus-visible {
outline: none;
}