"use client"; import { memo } from "react"; import { cls } from "@/lib/utils"; interface PlainBackgroundProps { className?: string; } const PlainBackground = ({ className = "" }: PlainBackgroundProps) => { return (