"use client"; import { memo } from "react"; import { cls } from "@/lib/utils"; interface AuroraBackgroundProps { className?: string; } const AuroraBackground = ({ className = "", }: AuroraBackgroundProps) => { return (
{/* top center */}
{/* top right */}
{/* center left */}
{/* top left */}
{/* bottom center */}
); }; AuroraBackground.displayName = "AuroraBackground"; export default memo(AuroraBackground);