mirror of
https://github.com/spliit-app/spliit.git
synced 2026-02-23 07:56:12 +01:00
16 lines
377 B
TypeScript
16 lines
377 B
TypeScript
import { Button } from '@/components/ui/button'
|
|
import Link from 'next/link'
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<div className="flex flex-col gap-2">
|
|
<p>This group does not exist.</p>
|
|
<p>
|
|
<Button asChild variant="secondary">
|
|
<Link href="/groups">Go to recently visited groups</Link>
|
|
</Button>
|
|
</p>
|
|
</div>
|
|
)
|
|
}
|