Initial commit — Умный Байт landing

This commit is contained in:
2026-05-13 09:32:45 +03:00
commit 9e21350def
37 changed files with 1950 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
html {
font-family: 'Inter', -apple-system, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
body {
@apply bg-white text-slate-900;
margin: 0;
}
}
@layer components {
.container-x {
@apply mx-auto px-6 md:px-8 lg:px-12 max-w-6xl;
}
.btn-primary {
@apply inline-flex items-center gap-2 bg-brand-800 hover:bg-brand-700
text-white font-medium px-6 py-3 rounded-xl transition-colors;
}
.btn-secondary {
@apply inline-flex items-center gap-2 bg-white border border-slate-200
hover:border-slate-300 text-brand-900 font-medium px-6 py-3 rounded-xl
transition-colors;
}
}