An animated ripple effect typically used behind elements to emphasize them.
1import { Ripple } from "@/components/magicui/ripple";
2
3export function RippleDemo() {
4 return (
5 <div className="relative flex h-[500px] w-full flex-col items-center justify-center overflow-hidden rounded-lg border bg-background md:shadow-xl">
6 <p className="z-10 whitespace-pre-wrap text-center text-5xl font-medium tracking-tighter text-white">
7 Ripple
8 </p>
9 <Ripple />
10 </div>
11 );
12}