feat: Add Open Source Compliance link to footer

Added a new link to the Open Source Compliance page
in the footer navigation.
Removed Unnecessary comments for cleaner code
This commit is contained in:
Cipher Vance 2025-07-23 11:17:21 -05:00
parent deed082f10
commit f37ba2e3f7

View file

@ -11,7 +11,6 @@
<link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='images/favicon.ico') }}">
</head>
<body>
<!-- Header -->
<header class="main-header">
<div class="header-container">
<div class="header-left">
@ -72,7 +71,6 @@
</div>
</div>
<!-- Mobile Navigation -->
<div class="mobile-nav">
<ul class="mobile-nav-menu">
<li><a href="{{ url_for('main.index') }}" class="mobile-nav-link">Home</a></li>
@ -83,7 +81,6 @@
</div>
</header>
<!-- Flash Messages -->
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
<div class="flash-messages">
@ -102,15 +99,12 @@
{% endif %}
{% endwith %}
<!-- Main Content -->
<main class="main-content">
{% block content %}{% endblock %}
</main>
<!-- Footer -->
<footer class="main-footer">
<div class="footer-container">
<!-- Footer Top -->
<div class="footer-top">
<div class="footer-section footer-brand">
<div class="footer-logo">
@ -148,6 +142,7 @@
<li><a href="/about">About Us</a></li>
<li><a href="/privacy-policy">Privacy Policy</a></li>
<li><a href="/terms-of-service">Terms of Service</a></li>
<li><a href="/oss-compliance">Open Source Compliance</a></li>
<li><a href="/careers">Careers</a></li>
</ul>
</div>
@ -188,7 +183,6 @@
</div>
</div>
<!-- Footer Bottom -->
<div class="footer-bottom">
<div class="footer-bottom-content">
<div class="copyright">
@ -210,7 +204,6 @@
</div>
</footer>
<!-- JavaScript for mobile menu -->
<script>
document.addEventListener('DOMContentLoaded', function() {
const mobileToggle = document.querySelector('.mobile-menu-toggle');