diff --git a/edu/index.html b/edu/index.html index 895d847..28ac386 100644 --- a/edu/index.html +++ b/edu/index.html @@ -3,6 +3,12 @@ + + + + + + Open Learning Hub @@ -31,6 +37,7 @@ +
@@ -50,6 +57,11 @@

The world's largest platform for software development and version control.

Visit Site +
+

The Odin Project

+

A full stack curriculum that is free and supported by a passionate open source community.

+ Visit Site +
@@ -130,6 +142,41 @@

A web-based publication of virtually all MIT course content.

Visit Site
+ + +
+

Anki

+

Powerful, intelligent flashcards. Remembering things just became much easier.

+ Visit Site +
+
+

Notion

+

The all-in-one workspace for your notes, tasks, wikis, and databases.

+ Visit Site +
+
+

Pomofocus

+

A customizable Pomodoro timer that works on desktop & mobile browser.

+ Visit Site +
+
+ + +
+

🚀 Learning Paths

+
+
+

For Beginners

+

Start with Khan Academy to build a strong foundation in Math and Science. Then, try Duolingo for a new language.

+
+
+

For Career Switchers

+

Dive into freeCodeCamp or The Odin Project (add this!) to learn web development. Supplement with CS50 on edX.

+
+
+

For Lifelong Learners

+

Explore Project Gutenberg for classics, TED Talks for inspiration, and Coursera for specific interests.

+
diff --git a/edu/style.css b/edu/style.css index c8b993a..80b910d 100644 --- a/edu/style.css +++ b/edu/style.css @@ -164,3 +164,22 @@ footer { grid-template-columns: 1fr; } } + +/* Learning Paths */ +.paths-container { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 20px; +} + +.path-card { + background-color: #e8f4f8; + padding: 1.5rem; + border-radius: 8px; + border-left: 4px solid var(--secondary-color); +} + +.path-card h3 { + color: var(--primary-color); + margin-bottom: 0.5rem; +}