Initial commit

This commit is contained in:
Emre
2025-10-10 13:10:51 +03:00
commit bfd28b7fff
61 changed files with 6234 additions and 0 deletions

27
src/index.css Normal file
View File

@@ -0,0 +1,27 @@
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
color: #111827;
background-color: #f6f8fb;
}
html,
body {
@apply bg-mist text-ink antialiased;
}
body {
@apply min-h-screen scroll-smooth;
}
a {
@apply text-brand-600 transition-colors duration-300 hover:text-brand-500;
}
::selection {
background-color: rgba(90, 107, 240, 0.2);
}