20 lines
391 B
TypeScript
20 lines
391 B
TypeScript
"use client";
|
|
import Lottie from "react-lottie";
|
|
import * as animationData from "./not-found-animation.json";
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<div className="not-found">
|
|
<Lottie
|
|
height={400}
|
|
width={400}
|
|
options={{
|
|
animationData: animationData,
|
|
loop: true,
|
|
autoplay: true,
|
|
}}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|