28 lines
1.2 KiB
JavaScript
28 lines
1.2 KiB
JavaScript
import { Helmet } from 'react-helmet-async'
|
|
import { Link } from 'react-router-dom'
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<>
|
|
<Helmet>
|
|
<title>Page Not Found | Queue North Technologies</title>
|
|
<meta name="description" content="The page you're looking for doesn't exist." />
|
|
</Helmet>
|
|
<section className="min-h-[60vh] flex items-center justify-center bg-background">
|
|
<div className="text-center px-4">
|
|
<h1 className="text-6xl font-bold text-primary-navy mb-4">404</h1>
|
|
<p className="text-xl text-soft-text mb-8">The page you're looking for doesn't exist.</p>
|
|
<div className="flex flex-col sm:flex-row gap-4 justify-center">
|
|
<Link to="/" className="inline-flex items-center justify-center px-6 py-3 bg-primary-cyan text-primary-navy font-medium rounded-md hover:bg-cyan-600 transition-colors">
|
|
Back to Home
|
|
</Link>
|
|
<Link to="/contact" className="inline-flex items-center justify-center px-6 py-3 border border-primary-navy text-primary-navy font-medium rounded-md hover:bg-primary-navy hover:text-white transition-colors">
|
|
Contact Us
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</>
|
|
)
|
|
}
|