forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnot-found.tsx
More file actions
34 lines (32 loc) · 1.1 KB
/
Copy pathnot-found.tsx
File metadata and controls
34 lines (32 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
'use client';
import Image from 'next/image';
import Link from 'next/link';
export default function NotFound() {
return (
<div className="flex flex-col items-center justify-center min-h-screen">
<div className="text-center">
<div className="relative w-32 h-32 mx-auto mb-8 animate-bounce">
<Image
src="/images/copilotkit-logo.svg"
alt="CopilotKit Logo"
fill
priority
className="object-contain"
/>
</div>
<h1 className="text-4xl font-bold mb-4 bg-gradient-to-r from-blue-600 to-purple-600 text-transparent bg-clip-text">
Page Not Found
</h1>
<p className="text-gray-600 dark:text-gray-300 mb-6 max-w-sm">
Oops! The page you're looking for doesn't exist.
</p>
<Link
href="/"
className="inline-flex items-center px-6 py-3 text-base font-medium text-white bg-gradient-to-r from-blue-600 to-purple-600 rounded-lg hover:opacity-90 transition-opacity"
>
Go to Documentation
</Link>
</div>
</div>
);
}