sixty5-street/app/not-found.js
2025-07-22 20:01:15 +05:30

35 lines
1.2 KiB
JavaScript

'use client'
import Link from "next/link"
import GallerySlider1 from '@/components/slider/GallerySlider1'
import Layout from "@/components/layout/Layout"
export default function Error404() {
return (
<>
<Layout headerStyle={2} footerStyle={2} breadcrumbTitle="404 Error">
{/* Error Section */}
<section className="error-section">
<div className="auto-container">
<div className="image">
<img src="/assets/images/resource/error.png" alt="" />
</div>
<h2>Page Not Found</h2>
<Link href="/" className="theme-btn btn-style-two clearfix"><span className="icon"></span>Return To Home</Link>
</div>
</section>
{/* End Error Section */}
{/* Gallery Section */}
<section className="gallery-section">
<div className="outer-container">
<GallerySlider1/>
</div>
</section>
{/* End Gallery Section */}
</Layout>
</>
)
}