Skip to content

Commit a534a93

Browse files
committed
Update about page and theme initialization logic
Revised the current project focus on privacy-first video learning technology in the about page. Changed the default theme initialization to light mode instead of relying on system preferences.
1 parent 19c69c3 commit a534a93

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

_pages/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Interested in LLMs, software innovation, or just a friendly chat about the lates
9292
<!-- - 📄 [My Resume](https://untilhamza.github.io/assets/resume/Hamza_Kyamanywa_-_Full_Stack_Software_Engineer.pdf) -->
9393
<!-- - 🖥️  See my portfolio at [here](http://untilhamza.github.io/) -->
9494
- 📫 You can reach me at [untilhamza@gmail.com](mailto:untilhamza@gmail.com)
95-
- 🚀  I'm currently working on [empowering life long learners](http://www.slid.cc)
95+
- 🚀  I'm currently working on a [privacy first video learning technology ](http://www.hovernotes.io)
9696
- :microscope: My research interests are in **Generative AI**, **Large Language Models** and **Responsible AI**.
9797
- :briefcase: [My Resume](/assets/pdf/240619_Kyamanywa-Hamza-NVIDIA-resume.pdf)
9898
<!-- - 🧠  I'm learning Django -->

assets/js/theme.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,8 @@ let transTheme = () => {
8989

9090
let initTheme = (theme) => {
9191
if (theme == null || theme == "null") {
92-
const userPref = window.matchMedia;
93-
if (userPref && userPref("(prefers-color-scheme: dark)").matches) {
94-
theme = "dark";
95-
}
92+
// Default to light mode instead of system preference
93+
theme = "light";
9694
}
9795

9896
setTheme(theme);

0 commit comments

Comments
 (0)