"use client"; import { memo } from "react"; import { cls } from "@/lib/utils"; type GridSize = "small" | "medium" | "large"; interface GridBackroundProps { size?: GridSize; className?: string; perspectiveThreeD?: boolean; } const GRID_SIZES: Record = { small: "6.25vw 6.25vw", medium: "10vw 10vw", large: "20vw 20vw", }; const GridBackround = ({ size = "medium", className = "", perspectiveThreeD = false }: GridBackroundProps) => { return (