113 lines
3.5 KiB
TypeScript
113 lines
3.5 KiB
TypeScript
"use client";
|
|
|
|
import React, { memo, useState, useEffect } from "react";
|
|
import TextBox from "@/components/Textbox";
|
|
import MediaContent from "@/components/shared/MediaContent";
|
|
import { cls } from "@/lib/utils";
|
|
import type { LucideIcon } from "lucide-react";
|
|
import type { ButtonConfig } from "@/types/button";
|
|
|
|
interface HeroSplitLargeProps {
|
|
title: string;
|
|
description: string;
|
|
tag?: string;
|
|
tagIcon?: LucideIcon;
|
|
buttons?: ButtonConfig[];
|
|
imageSrc?: string;
|
|
videoSrc?: string;
|
|
imageAlt?: string;
|
|
videoAriaLabel?: string;
|
|
ariaLabel?: string;
|
|
className?: string;
|
|
containerClassName?: string;
|
|
textBoxClassName?: string;
|
|
titleClassName?: string;
|
|
descriptionClassName?: string;
|
|
tagClassName?: string;
|
|
buttonContainerClassName?: string;
|
|
buttonClassName?: string;
|
|
buttonTextClassName?: string;
|
|
mediaWrapperClassName?: string;
|
|
imageClassName?: string;
|
|
}
|
|
|
|
const HeroSplitLarge = ({
|
|
title,
|
|
description,
|
|
tag,
|
|
tagIcon,
|
|
buttons,
|
|
imageSrc,
|
|
videoSrc,
|
|
imageAlt = "",
|
|
videoAriaLabel = "Hero video",
|
|
ariaLabel = "Hero section",
|
|
className = "",
|
|
containerClassName = "",
|
|
textBoxClassName = "",
|
|
titleClassName = "",
|
|
descriptionClassName = "",
|
|
tagClassName = "",
|
|
buttonContainerClassName = "",
|
|
buttonClassName = "",
|
|
buttonTextClassName = "",
|
|
mediaWrapperClassName = "",
|
|
imageClassName = "",
|
|
}: HeroSplitLargeProps) => {
|
|
const [isCentered, setIsCentered] = useState(false);
|
|
|
|
useEffect(() => {
|
|
const handleResize = () => {
|
|
setIsCentered(window.innerWidth < 768);
|
|
};
|
|
|
|
handleResize();
|
|
window.addEventListener("resize", handleResize);
|
|
return () => window.removeEventListener("resize", handleResize);
|
|
}, []);
|
|
|
|
return (
|
|
<section
|
|
aria-label={ariaLabel}
|
|
className={cls("relative w-full h-svh pt-hero-page-padding md:pt-0 flex flex-col gap-15 md:flex-row md:gap-0 items-center", className)}
|
|
>
|
|
<div className={cls("w-content-width mx-auto flex flex-col md:flex-row gap-0 md:gap-20 items-center", containerClassName)}>
|
|
<div className="w-full md:w-1/2">
|
|
<TextBox
|
|
title={title}
|
|
description={description}
|
|
tag={tag}
|
|
tagIcon={tagIcon}
|
|
buttons={buttons}
|
|
className={cls("flex flex-col gap-3 md:gap-3", textBoxClassName)}
|
|
titleClassName={cls("text-7xl 2xl:text-8xl font-medium text-center md:text-left text-balance", titleClassName)}
|
|
descriptionClassName={cls("max-w-8/10 text-lg md:text-xl leading-[1.2] text-center md:text-left", descriptionClassName)}
|
|
tagClassName={cls("w-fit px-3 py-1 text-sm rounded-theme card text-foreground inline-flex items-center gap-2 mb-3", tagClassName)}
|
|
buttonContainerClassName={cls("flex gap-4 mt-4", buttonContainerClassName)}
|
|
buttonClassName={cls("", buttonClassName)}
|
|
buttonTextClassName={cls("text-base", buttonTextClassName)}
|
|
center={isCentered}
|
|
/>
|
|
</div>
|
|
<div className="relative w-full md:w-1/2" />
|
|
</div>
|
|
<div className={cls(
|
|
"relative! md:absolute! z-0 md:top-0 md:right-0 w-full md:w-[calc(50%-2.5rem)] h-full overflow-hidden",
|
|
mediaWrapperClassName
|
|
)}>
|
|
<MediaContent
|
|
imageSrc={imageSrc}
|
|
videoSrc={videoSrc}
|
|
imageAlt={imageAlt}
|
|
videoAriaLabel={videoAriaLabel}
|
|
imageClassName={cls("h-full min-h-0 rounded-none!", imageClassName)}
|
|
/>
|
|
</div>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
HeroSplitLarge.displayName = "HeroSplitLarge";
|
|
|
|
export default memo(HeroSplitLarge);
|