diff options
author | Simponic <loganhunt@simponic.xyz> | 2022-12-20 23:20:41 -0700 |
---|---|---|
committer | Simponic <loganhunt@simponic.xyz> | 2022-12-20 23:29:45 -0700 |
commit | bc02eec44d5eeddceb6922973e7309bf9948da81 (patch) | |
tree | 251f718ce961235296e9d4c8cbe2991466c9cca1 /index.html | |
parent | 0008269b8d55c9df265037b0a3d05f0dc756b532 (diff) | |
download | simponic.xyz-bc02eec44d5eeddceb6922973e7309bf9948da81.tar.gz simponic.xyz-bc02eec44d5eeddceb6922973e7309bf9948da81.zip |
Add fourier visualizer
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 16 |
1 files changed, 13 insertions, 3 deletions
@@ -11,18 +11,17 @@ <script src="https://kit.fontawesome.com/d7e97ed48f.js" crossorigin="anonymous"></script> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - </head> <body> <div class="top-container animate__animated animate__fadeIn"> <img src="images/profile.png" class="profile-picture"> - <p> + <h3> 👋 Hello, I'm Simponic! <br> 📖 This page hosts strictly static content. <br> 🔔 My "real website" is at <a href="https://simponic.xyz">simponic.xyz</a>. - </p> + </h3> <div class="projects-grid"> <div class="project" onclick="window.location='dvd-logo/index.html'"> <div class="project-logo-container"> @@ -67,6 +66,17 @@ <p>Zoom, pan, and "c" complex changes in this fun GPU-accelerated playground!</p> </div> </div> + + <div class="project" onclick="window.location='ft-visualizer/index.html'"> + <div class="project-logo-container"> + <i class="fa-solid fa-wave-square"></i> + </div> + + <div class="project-body"> + <h1>Discrete Fourier Visualizer</h1> + <p>Draw how your year has gone and view a reactive graph containing its DFT by dragging your mouse over the canvas!</p> + </div> + </div> </div> </div> </body> |