初始化 assetx 项目,首次提交

This commit is contained in:
2026-01-26 17:44:27 +08:00
commit f901590dce
492 changed files with 25203 additions and 0 deletions

53
app/globals.css Normal file
View File

@@ -0,0 +1,53 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: #f9fafb;
--foreground: #111827;
--font-inter: 'Inter', sans-serif;
--font-jetbrains: 'JetBrains Mono', monospace;
}
.dark {
--background: #111827;
--foreground: #f9fafb;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: var(--font-inter);
-webkit-font-smoothing: antialiased;
color: var(--foreground);
background: var(--background);
}
a,
button,
input,
select,
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
padding: 0;
border: none;
text-decoration: none;
background: none;
}
menu,
ol,
ul {
list-style-type: none;
margin: 0;
padding: 0;
}