maintenance: Clean up codebase and improve formatting

• Remove placeholder comments and unused code
• Standardize inline styles and formatting
• Update component structure and organization
This commit is contained in:
2025-09-28 10:47:30 -05:00
parent 918121cd66
commit e87a8153c9
24 changed files with 1007 additions and 410 deletions

View File

@@ -10,10 +10,16 @@ export default function Copyright() {
}}
>
<p>
&copy; 2025{" | "}Derek L. Seitz{" | "}
<a href="https://dlseitz.dev" target="_blank" rel="noopener noreferrer" className="k-link">
&copy; 2025 Derek L. Seitz{" | "}
<a href="https://dlseitz.dev" target="_blank" rel="noopener noreferrer" style={{
color: '#d94f27',
textDecoration: 'none',
transition: 'color 0.2s ease'
}}
onMouseEnter={(e) => e.target.style.color = '#ff6f48'}
onMouseLeave={(e) => e.target.style.color = '#d94f27'}>
dlseitz.dev
</a>
</a>{" | "}All Rights Reserved
</p>
</div>
);