my personal site
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Create projects.html

+47
+47
projects.html
··· 1 + <!DOCTYPE html> 2 + <html lang="en"> 3 + <head> 4 + <meta charset="UTF-8" /> 5 + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 6 + <title>Jack Hannon | Projects</title> 7 + <script> 8 + if (localStorage.getItem('theme') === 'dark' || 9 + (!localStorage.getItem('theme') && window.matchMedia('(prefers-color-scheme: dark)').matches)) { 10 + document.documentElement.classList.add('dark-theme'); 11 + } 12 + </script> 13 + <link rel="stylesheet" href="style.css" /> 14 + </head> 15 + <body> 16 + <header> 17 + <nav class="container"> 18 + <a href="index.html" class="brand">Jack Hannon</a> 19 + <ul class="menu"> 20 + <li><a href="index.html">About</a></li> 21 + <li><a href="projects.html" class="active">Projects</a></li> 22 + <li><a href="resume.html">Resume</a></li> 23 + <li><a href="contact.html">Contact</a></li> 24 + </ul> 25 + <button id="theme-toggle">Dark Mode</button> 26 + </nav> 27 + </header> 28 + <main class="container"> 29 + <h1>Projects</h1> 30 + <section> 31 + <h2>The Allentown Village Initiative <small>(Project Lead, 2019–2021)</small></h2> 32 + <p> 33 + Led a community-based restoration of a historic cemetery in Allentown, NJ. 34 + Coordinated volunteers and managed all project logistics to revitalize the site and engage local participants. 35 + </p> 36 + </section> 37 + <section> 38 + <h2>VT Gym Tracker <small>(Independent Developer, 2024–2025)</small></h2> 39 + <p> 40 + Developed and launched a mobile app for Virginia Tech campus gyms that provides real-time occupancy data and schedules. 41 + Created a marketing campaign to drive user adoption during the app’s App Store release. 42 + </p> 43 + </section> 44 + </main> 45 + <script src="script.js"></script> 46 + </body> 47 + </html>