Files
Maryam-s-work/src/components/pages/error/index.jsx
2025-08-30 11:03:32 +03:00

24 lines
708 B
JavaScript

"use client";
import SEO from '@/src/components/data/seo';
import HeaderThree from '@/src/components/layout/header/header-three';
import BreadCrumb from '../common/breadcrumb';
import Error from './error';
import FooterThree from '@/src/components/layout/footer/footer-three';
import ScrollToTop from '../common/scroll/scroll-to-top';
const ErrorPage = () => {
return (
<>
<SEO pageTitle='Not Found' />
<HeaderThree />
<BreadCrumb title='Not Found' innerTitle='404' />
<Error />
<div className='all-footer'>
<FooterThree />
</div>
<ScrollToTop />
</>
);
};
export default ErrorPage;