diff options
-rw-r--r-- | images/profile.png | bin | 655369 -> 366307 bytes | |||
-rw-r--r-- | index.html | 43 |
2 files changed, 20 insertions, 23 deletions
diff --git a/images/profile.png b/images/profile.png Binary files differindex 70c845e..99585cf 100644 --- a/images/profile.png +++ b/images/profile.png @@ -27,7 +27,7 @@ <a href="https://simponic.xyz">simponic.xyz</a>. </h3> <div class="projects-grid"> - <div class="project" onclick="window.location='euler-golf/index.html'"> + <a class="project" href="/euler-golf/"> <div class="project-logo-container"> <i class="fa-solid fa-golf-ball-tee"></i> </div> @@ -35,13 +35,13 @@ <div class="project-body"> <h1>Euler Golf 2</h1> <p> - A puzzle game (with solver) to explore rotations in the complex + A puzzle game (with BFS solver) to explore rotations in the complex plane. </p> </div> - </div> + </a> - <div class="project" onclick="window.location='julia/index.html'"> + <a class="project" href="/julia/"> <div class="project-logo-container"> <i class="fa-solid fa-square-root-variable"></i> </div> @@ -49,16 +49,13 @@ <div class="project-body"> <h1>Julia Set Explorer</h1> <p> - Zoom, pan, and "c" complex changes in this fun GPU-accelerated + Zoom, pan, and "c" complex changes in this GPU-accelerated playground! </p> </div> - </div> + </a> - <div - class="project" - onclick="window.location='ft-visualizer/index.html'" - > + <a class="project" href="/ft-visualizer/"> <div class="project-logo-container"> <i class="fa-solid fa-wave-square"></i> </div> @@ -70,8 +67,9 @@ its DFT by dragging your mouse over the canvas! </p> </div> - </div> - <div class="project" onclick="window.location='maize-maze/index.html'"> + </a> + + <a class="project" href="/maize-maze/"> <div class="project-logo-container"> <i class="fa-solid fa-diagram-project"></i> </div> @@ -79,13 +77,13 @@ <div class="project-body"> <h1>The A-maze-ing Maize Maze</h1> <p> - A Randomized Kruskal's Maze game with BFS path-finding. You play + A Randomized Kruskal's Maze game with (more) BFS. You play as a 🌽corn stalk trying to become 🍿popcorn. </p> </div> - </div> + </a> - <div class="project" onclick="window.location='centipede/index.html'"> + <a class="project" href="/centipede/"> <div class="project-logo-container"> <i class="fa-solid fa-mosquito"></i> </div> @@ -93,13 +91,12 @@ <div class="project-body"> <h1>Centipede</h1> <p> - In this game, shoot all the centipede bodies and score points and - go up levels. + Boring remake of the classic arcade game. </p> </div> - </div> + </a> - <div class="project" onclick="window.location='dvd-logo/index.html'"> + <a class="project" href="/dvd-logo/"> <div class="project-logo-container"> <i class="fa-solid fa-compact-disc"></i> </div> @@ -107,12 +104,12 @@ <div class="project-body"> <h1>DVD Logo Bouncing Animation</h1> <p> - Brings back the nostalgia of old-school DVD players with an - intersection predictor. The twist: no Canvas API! Only svg's and - absolute positioned images! + Bring back the nostalgia of old-school DVD players with an + intersection predictor. No Canvas API; only svg's and absolute + positioned images. </p> </div> - </div> + </a> </div> </div> </body> |