Docs
Dot and Circle Mouse Trailer
Dot and Circle Mouse Trailer
A simple Lazy Dot and Circle Mouse Trailer
Move you mouse around ;)
Installation
Usage
import { DotAndCircleMouseTrailer } from "@/components/dot-and-circle-mouse-trailer";Place the Component in your layout.tsx to make the Mouse Trailer accessible in entire project
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>
{children}
<DotAndCircleMouseTrailer />
</body>
</html>
);
}