70 lines
2.1 KiB
TypeScript
70 lines
2.1 KiB
TypeScript
import Button from "@/components/ui/Button";
|
|
import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot";
|
|
import TextAnimation from "@/components/ui/TextAnimation";
|
|
import ImageOrVideo from "@/components/ui/ImageOrVideo";
|
|
import ImageCardCarousel from "@/components/ui/ImageCardCarousel";
|
|
|
|
type HeroBillboardCarouselProps = {
|
|
tag: string;
|
|
title: string;
|
|
description: string;
|
|
primaryButton: { text: string; href: string };
|
|
secondaryButton: { text: string; href: string };
|
|
items: ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never })[];
|
|
};
|
|
|
|
const HeroBillboardCarousel = ({
|
|
tag,
|
|
title,
|
|
description,
|
|
primaryButton,
|
|
secondaryButton,
|
|
items,
|
|
}: HeroBillboardCarouselProps) => {
|
|
const duplicated = [...items, ...items, ...items, ...items];
|
|
|
|
return (
|
|
<section
|
|
aria-label="Hero section"
|
|
className="relative flex flex-col items-center justify-center gap-8 w-full min-h-svh py-25"
|
|
>
|
|
<HeroBackgroundSlot />
|
|
<div className="flex flex-col items-center gap-2 w-content-width mx-auto text-center">
|
|
<div className="px-3 py-1 mb-1 text-sm card rounded w-fit">
|
|
<p>{tag}</p>
|
|
</div>
|
|
|
|
<TextAnimation
|
|
text={title}
|
|
variant="fade"
|
|
gradientText={true}
|
|
tag="h1"
|
|
className="text-6xl font-medium text-balance"
|
|
/>
|
|
|
|
<TextAnimation
|
|
text={description}
|
|
variant="fade"
|
|
gradientText={false}
|
|
tag="p"
|
|
className="text-base md:text-lg leading-tight text-balance"
|
|
/>
|
|
|
|
<div className="flex flex-wrap justify-center gap-3 mt-3 ">
|
|
<Button text={primaryButton.text} href={primaryButton.href} variant="primary"/>
|
|
<Button text={secondaryButton.text} href={secondaryButton.href} variant="secondary"animationDelay={0.1} />
|
|
</div>
|
|
</div>
|
|
|
|
<div className="w-content-width mx-auto mt-8">
|
|
<ImageCardCarousel
|
|
images={items.map(item => item.imageSrc || item.videoSrc || '')}
|
|
className="aspect-video max-h-[600px]"
|
|
/>
|
|
</div>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default HeroBillboardCarousel;
|