diff --git a/src/components/layout/error.tsx b/src/components/layout/error.tsx new file mode 100644 index 0000000..b70ff5b --- /dev/null +++ b/src/components/layout/error.tsx @@ -0,0 +1,14 @@ +import { FC } from "react"; +import { cn } from "@/lib/utils"; + +interface Props { + className?: string; +} + +export const Error: FC = ({ className }) => { + return ( +
+

Oops, something went wrong

+
+ ); +};