"use client";
import { cn } from "@/lib/utils";
import { motion } from "framer-motion";
import React, { useId } from "react";
export const Background = () => {
return (
{Array.from({ length: 6 }).map((_, index) => (
{Array.from({ length: 10 }).map((_, index) => (
))}
))}
);
};
const GridBlock = () => {
return (
);
};
const Dot = () => {
return (
);
};
const SVGVertical = ({ className }: { className?: string }) => {
const width = 1;
const height = 140;
const id = useId();
return (
);
};
const SVG = ({ className }: { className?: string }) => {
const width = 300;
const height = 1;
const id = useId();
return (
);
};
// Use the below rect to debug linear gradient
{
/* */
}