aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/(landing)/Features/features.tsx
blob: b48209da4be64e87b9570eee6bafbe4b62307aa3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { cn } from "@repo/ui/lib/utils";

export const Gradient = ({ opacity = 50 }: { opacity?: number }) => {
	return (
		<div
			className={cn(
				"absolute top-0 -left-[10rem] w-[56.625rem] h-[56.625rem]  mix-blend-color-dodge",
				`opacity-${opacity}`,
			)}
		>
			<div
				className="top-0 -left-[10rem] w-[56.625rem] h-[56.625rem]   overflow-x-hidden bg-[rgb(54,157,253)] bg-opacity-40 blur-[337.4px]"
				style={{ transform: "rotate(-30deg)" }}
			/>
		</div>
	);
};