feat: Add RideAware link and update hardware descriptions

This commit introduces a new link to RideAware on the about page and updates the descriptions for NVMe and SSD in the hardware section.

- Added a link to https://rideaware.org on the "About" page under "Cycling Adventures".
- Corrected the hardware description for NVMe to accurately reflect the Samsung 860 EVO 500GB.
- Updated the hardware description for SSD to reflect the WD Green 1TB.
- Modified the "Checkout RideAware" button on the homepage to use a btn-light class for better visual consistency.
- Changed the "Read My Blog" button on the homepage to use a btn-light class.
This commit is contained in:
Blake Ridgway 2025-07-06 09:12:55 -05:00
parent 311ed4c355
commit c09bccc8a1
3 changed files with 7 additions and 3 deletions

View file

@ -140,6 +140,7 @@
<li><a href="{{ url_for('biking') }}" class="text-decoration-none"><i class="fas fa-bicycle me-2"></i>Cycling Adventures</a></li> <li><a href="{{ url_for('biking') }}" class="text-decoration-none"><i class="fas fa-bicycle me-2"></i>Cycling Adventures</a></li>
<li><a href="{{ url_for('blog') }}" class="text-decoration-none"><i class="fas fa-blog me-2"></i>Blog Posts</a></li> <li><a href="{{ url_for('blog') }}" class="text-decoration-none"><i class="fas fa-blog me-2"></i>Blog Posts</a></li>
<li><a href="https://gitlab.com/blakeridgway/cybersec-odyssey" target="_blank" rel="noopener noreferrer" class="text-decoration-none"><i class="fab fa-gitlab me-2"></i>CyberSec Repository</a></li> <li><a href="https://gitlab.com/blakeridgway/cybersec-odyssey" target="_blank" rel="noopener noreferrer" class="text-decoration-none"><i class="fab fa-gitlab me-2"></i>CyberSec Repository</a></li>
<li><a href="https://rideaware.org" target="_blank" rel="noopener noreferrer" class="text-decoration-none"><i class="fas fa-bicycle me-2"></i>RideAware</a></li>
</ul> </ul>
</div> </div>
</div> </div>

View file

@ -42,12 +42,12 @@
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
<div class="spec-item p-2 bg-light rounded"> <div class="spec-item p-2 bg-light rounded">
<strong><i class="fas fa-hdd text-secondary me-2"></i>SSD:</strong> Samsung 860 EVO 500GB <strong><i class="fas fa-hdd text-secondary me-2"></i>NVMe:</strong> Samsung 860 EVO 500GB
</div> </div>
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
<div class="spec-item p-2 bg-light rounded"> <div class="spec-item p-2 bg-light rounded">
<strong><i class="fas fa-hdd text-secondary me-2"></i>HDD:</strong> WD Green 1TB <strong><i class="fas fa-hdd text-secondary me-2"></i>SSD:</strong> WD Green 1TB
</div> </div>
</div> </div>
<div class="col-md-6"> <div class="col-md-6">

View file

@ -45,10 +45,13 @@
<strong>end-to-end data encryption, user privacy, and secure development practices.</strong> <strong>end-to-end data encryption, user privacy, and secure development practices.</strong>
</p> </p>
<div class="d-flex justify-content-center gap-3"> <div class="d-flex justify-content-center gap-3">
<a href="https://rideaware.org" class="btn btn-light">
<i class="fas fa-globe me-2"></i>Checkout RideAware
</a>
<a href="/biking" class="btn btn-light"> <a href="/biking" class="btn btn-light">
<i class="fas fa-bicycle me-2"></i>View My Cycling Stats <i class="fas fa-bicycle me-2"></i>View My Cycling Stats
</a> </a>
<a href="/blog" class="btn btn-outline-light"> <a href="/blog" class="btn btn-light">
<i class="fas fa-blog me-2"></i>Read My Blog <i class="fas fa-blog me-2"></i>Read My Blog
</a> </a>
</div> </div>