Files
parcer/src/components/dashboard/NotFound.tsx
2025-01-14 23:07:07 +05:30

11 lines
293 B
TypeScript

import React from 'react';
export function NotFoundPage() {
return (
<div style={{ textAlign: 'center' }}>
<h1>404 - Page Not Found</h1>
<p>Oops! This page does not exist.</p>
<a href="/" style={{ textDecoration: 'none' }}>Take me to the homepage</a>
</div>
);
}