Files
Maryam-s-work/src/app/(frontend)/[not-found]/page.jsx
2025-08-30 11:03:32 +03:00

12 lines
213 B
JavaScript

import ErrorPage from '@/src/components/pages/error';
import React from 'react';
const NotFound = () => {
return (
<>
<ErrorPage />
</>
);
};
export default NotFound;