feat(home): add Learning & Projects sections; polish copy\n\n- Learning: personal/warm tone, Hebrew/Israel/Aviation updates\n- Projects: paragraph style (no boxes)\n- Hebrew support: add Noto Sans Hebrew, RTL handling, Heb.vue component\n- Remove Heebo; update CSS and deps

This commit is contained in:
2025-08-16 14:54:26 -06:00
parent eb40610536
commit ce54138492
6 changed files with 67 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
/* Match brosner.com font */
@import url("@fontsource-variable/roboto-slab/index.css");
@import url("@fontsource/noto-sans-hebrew/400.css");
@import url("@fontsource/noto-sans-hebrew/600.css");
html, body {
font-family: "Roboto Slab Variable", Roboto, "Helvetica Neue", Arial, sans-serif;
font-optical-sizing: auto;
@@ -10,4 +12,12 @@ html, body {
fill: #fff;
}
.hebrew, :lang(he) {
font-family: "Noto Sans Hebrew", system-ui, sans-serif;
}
:lang(he) {
direction: rtl;
unicode-bidi: isolate;
}