fix: not found message

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

View File

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