We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/shibaleo/mcpist'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
not-found.tsx•887 B
import Link from "next/link"
export default function NotFound() {
return (
<div className="min-h-screen bg-background flex items-center justify-center p-4">
<div className="text-center space-y-6">
<div className="space-y-2">
<h1 className="text-6xl font-bold text-primary">404</h1>
<h2 className="text-xl font-semibold text-foreground">
Page Not Found
</h2>
<p className="text-muted-foreground max-w-md">
The page you are looking for does not exist or has been moved.
</p>
</div>
<Link
href="/dashboard"
className="inline-flex items-center justify-center rounded-md bg-primary px-6 py-2.5 text-sm font-medium text-primary-foreground hover:bg-primary/90 transition-colors"
>
Back to Dashboard
</Link>
</div>
</div>
)
}