File size: 274 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"use client";

import Box from "@/components/Box";

const Error = () => {
  return ( 
    <Box className="h-full flex items-center justify-center">
      <div className="text-neutral-400">
        Something went wrong.
      </div>
    </Box>
  );
}
 
export default Error;