🔧 Maintainability: Hardcoded Year in Footer
Severity: Low
File: src/components/layout/Footer.jsx
Problem
Copyright year is hardcoded:
<p>© 2026 BuildVerse. Built by MistryVishwa</p>
Issues
- Must update manually every year
- Forgotten updates look unprofessional
- Technical debt
Fix
const currentYear = new Date().getFullYear();
<p>© {currentYear} BuildVerse. Built by MistryVishwa</p>
Labels: enhancement, ssoc26
🔧 Maintainability: Hardcoded Year in Footer
Severity: Low
File: src/components/layout/Footer.jsx
Problem
Copyright year is hardcoded:
Issues
Fix
Labels: enhancement, ssoc26