A background dot pattern made with SVGs, fully customizable using Tailwind CSS.
1"use client";
2
3import { cn } from "@/lib/utils";
4import { DotPattern } from "@/components/magicui/dot-pattern";
5
6export function DotPatternDemo() {
7 return (
8 <div className="relative flex h-[500px] w-full flex-col items-center justify-center overflow-hidden rounded-lg border bg-background md:shadow-xl">
9 <p className="z-10 whitespace-pre-wrap text-center text-5xl font-medium tracking-tighter text-black dark:text-white">
10 Dot Pattern
11 </p>
12 <DotPattern
13 className={cn(
14 "[mask-image:radial-gradient(300px_circle_at_center,white,transparent)]",
15 )}
16 />
17 </div>
18 );
19}