blob: ef1e8244230a7a218e25880d53dc46c68341a2b2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
import cn from "classnames";
import { FadeIn } from "./FadeIn";
import gradients from "../home-shared/gradients.module.css";
export function GradientSectionBorder({
children,
}: {
children: React.ReactNode;
}) {
return (
<section className={cn("relative overflow-hidden")}>
<FadeIn noVertical viewTriggerOffset>
<span
className={cn(
"w-full absolute white h-[1px] top-0 opacity-25",
gradients.gradientSectionBorderDivider
)}
/>
<span
className={cn(
gradients.gradientSectionBorder,
gradients.gradientSectionBorderLeft,
"dark:opacity-35 opacity-[0.15]"
)}
/>
<span
className={cn(
gradients.gradientSectionBorder,
gradients.gradientSectionBorderRight,
"dark:opacity-35 opacity-[0.15]"
)}
/>
</FadeIn>
{children}
</section>
);
}
|