feat: set text decoration to none

This commit is contained in:
amhsirak
2025-01-14 23:05:04 +05:30
parent 0b8d4868b5
commit e643718404

View File

@@ -5,7 +5,7 @@ export function NotFoundPage() {
<div style={{ textAlign: 'center', marginTop: '50px' }}>
<h1>404 - Page Not Found</h1>
<p>Oops! This page does not exist.</p>
<a href="/">Take me to the homepage</a>
<a href="/" style={{ textDecoration: 'none'}}>Take me to the homepage</a>
</div>
);
}