feat: not found component

This commit is contained in:
amhsirak
2025-01-14 22:51:31 +05:30
parent dcc1c63643
commit 4bd161ab88

View File

@@ -0,0 +1,11 @@
import React from 'react';
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>
</div>
);
}