Background Blocks One
Background Blocks One is a React and Tailwind CSS component from UI Layouts, licensed MIT. Copy it and paste it into your project.
UI Layouts
MIT
other
What it is
Background Blocks One is a React and Tailwind CSS component from UI Layouts, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
No packages beyond the project baseline
Licence
This component comes from UI Layouts and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Background Blocks One
'use client';
import Blocks from '@/components/ui/blocks';
import React, { useRef } from 'react';
function BlockOne() {
const containerRef = useRef<HTMLDivElement>(null);
return (
<div
className='h-[550px] overflow-hidden dark:bg-black bg-white before:absolute before:w-full before:h-full before:bg-linear-to-t dark:before:from-[#070707] before:from-[#dbdbdb] before:z-1 w-full relative'
ref={containerRef}
>
<Blocks
activeDivsClass='dark:bg-[#131212] bg-[#9ba1a131] '
divClass='dark:border-[#131212] border-[#9ba1a131] '
classname='w-full'
containerRef={containerRef}
activeDivs={{
0: new Set([2, 4, 6]),
1: new Set([0, 8]),
2: new Set([1, 3, 5]),
4: new Set([0, 5, 8]),
5: new Set([2, 4]),
7: new Set([2, 6, 9]),
8: new Set([0, 4]),
9: new Set([5]),
10: new Set([3, 6]),
11: new Set([1, 5]),
12: new Set([7]),
13: new Set([2, 4]),
14: new Set([5]),
15: new Set([1, 6]),
}}
/>
</div>
);
}
export default BlockOne;