chore: init commit

feat(page): add hero page
This commit is contained in:
shafin-r
2025-12-03 19:40:35 +06:00
parent e0aeb5252d
commit d47a7c5311
8 changed files with 130 additions and 95 deletions

View File

@ -1,26 +1,13 @@
@import "tailwindcss";
/* Global default font = Lato */
:root {
--background: #ffffff;
--foreground: #171717;
font-family: var(--font-lato), sans-serif;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
/* Tailwind theme overrides */
@theme {
--font-sans: var(--font-lato), sans-serif;
--font-lato: var(--font-lato), sans-serif;
--font-inter: var(--font-inter), sans-serif;
}