File size: 524 Bytes
05c5ed5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import Link from "next/link";

export default function ExportError({ message }: { message: string }) {
  return (
    <div className="w-full h-screen flex items-center justify-center">
      <div className="flex flex-col gap-4">
        <div className="text-2xl font-bold flex items-center gap-4">
          {message}
        </div>
        <Link
          href="/"
          className="hover:underline text-sm text-muted-foreground text-center"
        >
          Go to home
        </Link>
      </div>
    </div>
  );
}