first commitv1

This commit is contained in:
SarTron-NorthBlue
2026-04-02 17:36:07 +04:00
parent 2269fdfc58
commit be02b7e542
24 changed files with 4099 additions and 0 deletions

25
src/index.css Normal file
View File

@@ -0,0 +1,25 @@
@import 'tailwindcss';
@theme {
--color-barber-bg: #0a0a0a;
--color-barber-gold: #d4af37;
--color-barber-gold-muted: #b8962e;
--color-barber-cream: #ece8e1;
--color-barber-stone: #1a1a1a;
--font-serif: 'Playfair Display', ui-serif, Georgia, serif;
--font-sans: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
}
@layer base {
html {
scroll-behavior: smooth;
}
body {
@apply m-0 min-h-svh bg-barber-bg font-sans text-barber-cream antialiased;
}
#root {
@apply min-h-svh w-full max-w-none;
}
}