Files
parcer/src/components/dashboard/NotFound.tsx

11 lines
277 B
TypeScript
Raw Normal View History

2025-01-14 22:51:31 +05:30
import React from 'react';
export function NotFoundPage() {
2025-01-14 23:02:35 +05:30
return (
<div style={{ textAlign: 'center', marginTop: '50px' }}>
<h1>404 - Page Not Found</h1>
2025-01-14 23:04:35 +05:30
<p>Oops! This page does not exist.</p>
<a href="/">Take me to the homepage</a>
2025-01-14 23:02:35 +05:30
</div>
);
}