add homepage hero and route

This commit is contained in:
Yisroel Baum 2026-05-16 21:49:32 +03:00
parent ca20b7ae43
commit 4d8e0902ba
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
6 changed files with 296 additions and 8 deletions

View file

@ -0,0 +1,37 @@
:root {
--color-cream: #f4efe1;
--color-slate: #2b3f4e;
--color-slate-dark: #213240;
--color-olive: #5e6b4c;
--color-text: #1f1f1f;
--color-text-muted: #5a5a5a;
--color-white: #ffffff;
--color-border: #e6e1d2;
--font-serif: 'Merriweather', Georgia, serif;
--font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}
* {
box-sizing: border-box;
}
html,
body {
margin: 0;
padding: 0;
font-family: var(--font-sans);
color: var(--color-text);
background: var(--color-white);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
color: inherit;
text-decoration: none;
}
button {
font-family: inherit;
cursor: pointer;
}