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:
@@ -10,10 +10,16 @@ export default function Copyright() {
|
||||
}}
|
||||
>
|
||||
<p>
|
||||
© 2025{" | "}Derek L. Seitz{" | "}
|
||||
<a href="https://dlseitz.dev" target="_blank" rel="noopener noreferrer" className="k-link">
|
||||
© 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>
|
||||
);
|
||||
|
Reference in New Issue
Block a user