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

11 lines
293 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 (
2025-01-14 23:05:58 +05:30
<div style={{ textAlign: 'center' }}>
2025-01-14 23:02:35 +05:30
<h1>404 - Page Not Found</h1>
2025-01-14 23:04:35 +05:30
<p>Oops! This page does not exist.</p>
2025-01-14 23:07:07 +05:30
<a href="/" style={{ textDecoration: 'none' }}>Take me to the homepage</a>
2025-01-14 23:02:35 +05:30
</div>
);
}