Files
1fc64612-1e1a-4be9-ac98-722…/src/components/sections/about/AboutParallax.tsx
kudinDmitriyUp 3cf2c122fb Initial commit
2026-06-02 12:54:34 +00:00

87 lines
3.4 KiB
TypeScript

import { useRef } from "react";
import { motion, useScroll, useTransform } from "motion/react";
import Button from "@/components/ui/Button";
import TextAnimation from "@/components/ui/TextAnimation";
import ImageOrVideo from "@/components/ui/ImageOrVideo";
type AboutParallaxProps = {
tag: string;
title: string;
description: string;
primaryButton?: { text: string; href: string };
secondaryButton?: { text: string; href: string };
badge?: string;
} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never });
const AboutParallax = ({ tag, title, description, primaryButton, secondaryButton, imageSrc, videoSrc, badge }: AboutParallaxProps) => {
const sectionRef = useRef<HTMLDivElement>(null);
const { scrollYProgress } = useScroll({
target: sectionRef,
offset: ["start end", "end start"],
});
const fgY = useTransform(scrollYProgress, [0, 1], ["120px", "-120px"]);
const bgY = useTransform(scrollYProgress, [0, 1], ["-60px", "60px"]);
const bgScale = useTransform(scrollYProgress, [0, 1], [1, 1.15]);
return (
<section
ref={sectionRef}
aria-label="About section"
className="relative py-20"
>
<div className="mx-auto w-content-width">
<div className="flex flex-col md:flex-row items-center gap-8 md:gap-16">
<div className="w-full md:w-45/100 flex flex-col gap-3">
<div className="px-3 py-1 mb-1 text-sm card rounded w-fit">
<p>{tag}</p>
</div>
<TextAnimation
text={title}
variant="slide-up"
gradientText={true}
tag="h2"
className="text-7xl 2xl:text-8xl leading-[1.15] font-semibold text-balance"
/>
<TextAnimation
text={description}
variant="slide-up"
gradientText={false}
tag="p"
className="md:max-w-8/10 text-lg md:text-xl leading-snug text-balance"
/>
{(primaryButton || secondaryButton) && (
<div className="flex flex-wrap gap-3 mt-2 md: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>
<div className="w-full md:w-55/100 relative h-100 md:h-125 xl:h-150 2xl:h-175">
<div className="absolute top-0 right-0 w-75/100 h-full overflow-hidden rounded-none">
<motion.div className="w-full h-full" style={{ y: bgY, scale: bgScale }}>
<ImageOrVideo imageSrc={imageSrc} videoSrc={videoSrc} className="rounded-none" />
</motion.div>
{badge && (
<span className="absolute top-2 right-2 xl:top-3 xl:right-3 2xl:top-4 2xl:right-4 px-3 py-1.5 text-xs text-foreground font-medium card rounded-none">
{badge}
</span>
)}
</div>
<motion.div
className="absolute top-15/100 left-0 w-65/100 h-70/100 z-10 overflow-hidden rounded-none"
style={{ y: fgY }}
>
<ImageOrVideo imageSrc={imageSrc} videoSrc={videoSrc} className="rounded-none" />
</motion.div>
</div>
</div>
</div>
</section>
);
};
export default AboutParallax;