Files
cachetdeco/src/components/ui/hero.tsx
mouad bouras 5dc33897ce
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 46s
fix stroke
2026-03-30 14:09:37 -04:00

160 lines
5.2 KiB
TypeScript

import {
Carousel,
CarouselContent,
CarouselItem,
} from "@/components/ui/carousel";
import { motion } from "motion/react";
import Autoplay from "embla-carousel-autoplay";
import general from "@/content/settings/general.json";
export type HeroContent = {
title: string;
title2: string;
subtitle: string;
cta: string;
ctaHref: string;
};
const logo = {
src: "/images/logo-text.svg",
alt: "Cachet Peintres Décorateurs",
};
const slides = [
{ src: "/images/carrousel-1.webp", alt: "Peinture intérieure" },
{ src: "/images/carrousel-2.webp", alt: "Décoration murale" },
{ src: "/images/carrousel-3.webp", alt: "Finition de qualité" },
{ src: "/images/carrousel-4.webp", alt: "Chambre" },
{ src: "/images/carrousel-5.webp", alt: "Pièce lumineuse" },
];
const autoplayPlugin = Autoplay({
delay: general.carouselDelay,
stopOnInteraction: false,
stopOnMouseEnter: false,
});
const fadeUp = (delay: number) => ({
initial: { opacity: 0, y: 24 },
animate: { opacity: 1, y: 0 },
transition: {
duration: 0.6,
ease: [0.22, 1, 0.36, 1] as const,
delay,
},
});
export default function Hero({ content }: { content: HeroContent }) {
const { subtitle, cta, ctaHref } = content;
return (
<div className="bg-white dark:bg-gray-900">
<div className="relative isolate overflow-hidden h-screen min-h-[800px]">
<Carousel
className="absolute inset-0 -z-10 size-full [&_[data-slot='carousel-content']]:h-full"
opts={{ loop: true, dragFree: false }}
plugins={[autoplayPlugin]}
>
<CarouselContent className="-ml-0 h-full">
{slides.map((slide, index) => (
<CarouselItem key={index} className="pl-0 h-full relative">
<img
src={slide.src}
alt={slide.alt}
className="size-full object-cover"
/>
<div className="absolute inset-0 bg-gradient-to-b from-black/00 via-black/35 to-black/60" />
</CarouselItem>
))}
</CarouselContent>
</Carousel>
<div className="relative z-10 mx-auto max-w-7xl px-6 lg:px-8 h-full flex items-center justify-center pt-14">
<div className="mx-auto max-w-4xl text-center lg:mt-20">
<div className="relative rounded-lg px-6 py-2">
<svg
className="relative"
viewBox="0 0 1390 500"
xmlns="http://www.w3.org/2000/svg"
>
<motion.text
x="3"
y="312"
fontFamily="Cocogoose"
fontSize="350"
stroke="white"
strokeWidth="3"
strokeLinecap="round"
strokeLinejoin="round"
className="fill-brand-600"
{...fadeUp(1.05)}
>
CACHET
</motion.text>
<motion.path
id="Rectangle"
fill="#b0b0ac"
fillRule="evenodd"
stroke="white"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
d="M 228 360 L 1161 360 L 1161 334 L 228 334 Z"
initial={{ scaleX: 0 }}
animate={{ scaleX: 1 }}
transition={{
duration: 0.85,
ease: [0.22, 1, 0.36, 1],
delay: 0.35,
}}
style={{
originX: 0,
transformBox: "fill-box",
transformOrigin: "0% 50%",
}}
/>
<motion.text
x="228"
y="435"
fontFamily="Geoform"
fontSize="72"
fontWeight="700"
className="fill-graphite-600"
stroke="white"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
{...fadeUp(1.05)}
>
PEINTRES DECORATEURS
</motion.text>
</svg>
</div>
<motion.p
{...fadeUp(1.15)}
className="p-4 text-lg font-medium font-[family-name:var(--font-body)] text-pretty text-white sm:text-xl/8 lg:text-2xl/8"
>
{subtitle}
</motion.p>
<motion.div
{...fadeUp(1.25)}
className="mt-10 flex items-center justify-center"
>
<motion.a
whileHover={{ scale: 1.075, transition: { duration: 0.1 } }}
transition={{ type: "spring", stiffness: 400, damping: 25 }}
href={ctaHref}
className="rounded-md bg-[var(--color-brand-600)] px-3.5 py-2.5 text-lg font-light text-white shadow-xs hover:bg-[var(--color-brand-700)] focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-[var(--color-brand-600)]"
>
{cta}
</motion.a>
</motion.div>
</div>
</div>
</div>
</div>
);
}