first commit

This commit is contained in:
lendry
2026-06-24 14:37:15 +03:00
commit 995adeedd4
188 changed files with 28810 additions and 0 deletions

46
apps/docs/app/globals.css Normal file
View File

@@ -0,0 +1,46 @@
@import "tailwindcss";
@custom-variant dark (&:where(.dark, .dark *));
:root {
--background: #ffffff;
--foreground: #09090b;
--muted: #f4f4f5;
--border: #e4e4e7;
}
.dark {
--background: #09090b;
--foreground: #fafafa;
--muted: #18181b;
--border: #27272a;
}
@theme inline {
--font-sans: var(--font-geist-sans), ui-sans-serif, system-ui, sans-serif;
--font-mono: var(--font-geist-mono), ui-monospace, monospace;
}
body {
margin: 0;
background: var(--background);
color: var(--foreground);
font-family: var(--font-sans);
-webkit-font-smoothing: antialiased;
}
a {
text-decoration: none;
}
::selection {
background: rgb(24 24 27 / 0.15);
}
.dark ::selection {
background: rgb(250 250 250 / 0.15);
}
.prose-docs h2 {
scroll-margin-top: 5rem;
}