aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/groups/not-found.tsx
blob: d4532e1faa5cc8044e4d6ae8438ec30f6232f887 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>
  )
}