02 nov 2023.
src / daily-targets / 2023-11-02.tsx
export const DailyTargets_02112023 = () => {
return (
<div className="bg-[#cbc35c] w-full h-full">
<div
className="absolute w-[125px] h-[75px] top-[75px] left-[75px] bg-[#fffac2]"
style={{
clipPath: 'polygon(0% 100%, 100% 100%, 100% 0%)',
}}
/>
<div
className="absolute w-[125px] h-[75px] top-[75px] left-[200px] bg-[#12703d]"
style={{
clipPath: 'polygon(0% 0%, 100% 100%, 0% 100%)',
}}
/>
<div
className="absolute w-[125px] h-[75px] top-[150px] left-[75px] bg-[#cf464a]"
style={{
clipPath: 'polygon(00% 0%, 100% 100%, 100% 0%)',
}}
/>
<div
className="absolute w-[125px] h-[75px] top-[150px] left-[200px] bg-[#1d1714]"
style={{
clipPath: 'polygon(0% 0%, 100% 0%, 0% 100%)',
}}
/>
</div>
);
};