Docs

Dot and Circle Mouse Trailer

Dot and Circle Mouse Trailer

A simple Lazy Dot and Circle Mouse Trailer

Move you mouse around ;)

Installation

pnpm dlx shadcn@latest add https://atlasui.dev/r/dot-and-circle-mouse-trailer.json

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>
  );
}