From 56a7eeaf0c4832af8b093bbb70e56e7272332ad7 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Thu, 15 Jan 2026 13:40:54 +0000 Subject: [PATCH] Update components/background.tsx --- components/background.tsx | 130 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 130 insertions(+) create mode 100644 components/background.tsx diff --git a/components/background.tsx b/components/background.tsx new file mode 100644 index 0000000..07482b8 --- /dev/null +++ b/components/background.tsx @@ -0,0 +1,130 @@ +"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 +{ + /* */ +}