88 lines
3.3 KiB
TypeScript
88 lines
3.3 KiB
TypeScript
import { ArrowRight } from "lucide-react";
|
|
import Button from "@/components/ui/Button";
|
|
import TextAnimation from "@/components/ui/TextAnimation";
|
|
import ImageOrVideo from "@/components/ui/ImageOrVideo";
|
|
import GridOrCarousel from "@/components/ui/GridOrCarousel";
|
|
import ScrollReveal from "@/components/ui/ScrollReveal";
|
|
|
|
type FeatureItem = {
|
|
title: string;
|
|
tags: string[];
|
|
} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never });
|
|
|
|
interface FeaturesArrowCardsProps {
|
|
tag: string;
|
|
title: string;
|
|
description: string;
|
|
primaryButton?: { text: string; href: string };
|
|
secondaryButton?: { text: string; href: string };
|
|
items: FeatureItem[];
|
|
}
|
|
|
|
const FeaturesArrowCards = ({
|
|
tag,
|
|
title,
|
|
description,
|
|
primaryButton,
|
|
secondaryButton,
|
|
items,
|
|
}: FeaturesArrowCardsProps) => {
|
|
return (
|
|
<section aria-label="Features section" className="py-20">
|
|
<div className="flex flex-col gap-8">
|
|
<div className="flex flex-col items-center w-content-width mx-auto gap-2">
|
|
<span className="px-3 py-1 mb-1 text-sm card rounded">{tag}</span>
|
|
|
|
<TextAnimation
|
|
text={title}
|
|
variant="fade"
|
|
gradientText={true}
|
|
tag="h2"
|
|
className="text-6xl font-medium text-center text-balance"
|
|
/>
|
|
|
|
<TextAnimation
|
|
text={description}
|
|
variant="fade"
|
|
gradientText={false}
|
|
tag="p"
|
|
className="md:max-w-6/10 text-lg leading-tight text-center"
|
|
/>
|
|
|
|
{(primaryButton || secondaryButton) && (
|
|
<div className="flex flex-wrap justify-center gap-3 mt-3">
|
|
{primaryButton && <Button text={primaryButton.text} href={primaryButton.href} variant="primary"/>}
|
|
{secondaryButton && <Button text={secondaryButton.text} href={secondaryButton.href} variant="secondary"animationDelay={0.1} />}
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
<ScrollReveal variant="fade-blur">
|
|
<GridOrCarousel>
|
|
{items.map((item) => (
|
|
<div key={item.title} className="flex flex-col gap-5 h-full cursor-pointer group">
|
|
<div className="aspect-square rounded overflow-hidden">
|
|
<ImageOrVideo imageSrc={item.imageSrc} videoSrc={item.videoSrc} className="transition-transform duration-500 ease-in-out group-hover:scale-105" />
|
|
</div>
|
|
<div className="flex flex-col justify-between gap-3 xl:gap-4 2xl:gap-5 p-3 xl:p-4 2xl:p-5 flex-1 card rounded">
|
|
<h3 className="text-xl md:text-2xl font-medium leading-tight">{item.title}</h3>
|
|
<div className="flex items-center justify-between gap-5">
|
|
<div className="flex flex-wrap items-center gap-2">
|
|
{item.tags.map((itemTag) => (
|
|
<span key={itemTag} className="px-3 py-1 mb-1 text-sm card rounded">{itemTag}</span>
|
|
))}
|
|
</div>
|
|
<ArrowRight className="shrink-0 h-[1em] w-auto transition-transform duration-300 group-hover:-rotate-45" strokeWidth={1.5} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
))}
|
|
</GridOrCarousel>
|
|
</ScrollReveal>
|
|
</div>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default FeaturesArrowCards;
|