124 lines
4.5 KiB
TypeScript
124 lines
4.5 KiB
TypeScript
/* eslint-disable */
|
||
// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body
|
||
import type { LucideIcon } from "lucide-react";
|
||
import TextAnimation from "@/components/ui/TextAnimation";
|
||
import ImageOrVideo from "@/components/ui/ImageOrVideo";
|
||
import LoopCarousel from "@/components/ui/LoopCarousel";
|
||
import Button from "@/components/ui/Button";
|
||
import { useButtonClick } from "@/hooks/useButtonClick";
|
||
import { resolveIcon } from "@/utils/resolve-icon";
|
||
|
||
const items = [
|
||
{
|
||
title: "Pizza Krema Etli",
|
||
description: "Özel krema sos, dana eti, mozzarella",
|
||
buttonIcon: "ArrowRight",
|
||
imageSrc: "https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?auto=format&fit=crop&w=800&q=80"
|
||
},
|
||
{
|
||
title: "Kremalı Pizza",
|
||
description: "İmza krema sos, taze fesleğen, parmesan",
|
||
buttonIcon: "ArrowRight",
|
||
imageSrc: "https://images.unsplash.com/photo-1574071318508-1cdbab80d002?auto=format&fit=crop&w=800&q=80"
|
||
},
|
||
{
|
||
title: "Truffle Krema",
|
||
description: "Trüf mantarı, krema, mozzarella",
|
||
buttonIcon: "ArrowRight",
|
||
imageSrc: "https://images.unsplash.com/photo-1513104890138-7c749659a591?auto=format&fit=crop&w=800&q=80"
|
||
}
|
||
];
|
||
|
||
type FeatureItem = {
|
||
title: string;
|
||
description: string;
|
||
buttonIcon: string | LucideIcon;
|
||
buttonHref?: string;
|
||
buttonOnClick?: () => void;
|
||
} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never });
|
||
|
||
interface FeaturesMediaCarouselProps {
|
||
tag: string;
|
||
title: string;
|
||
description: string;
|
||
primaryButton?: { text: string; href: string };
|
||
secondaryButton?: { text: string; href: string };
|
||
items: FeatureItem[];
|
||
}
|
||
|
||
const FeatureMediaCarouselCard = ({ item }: { item: FeatureItem }) => {
|
||
const handleClick = useButtonClick(item.buttonHref, item.buttonOnClick);
|
||
const Icon = resolveIcon(item.buttonIcon);
|
||
|
||
return (
|
||
<div className="relative overflow-hidden aspect-square md:aspect-3/2 rounded">
|
||
<ImageOrVideo imageSrc={item.imageSrc} videoSrc={item.videoSrc} className="absolute inset-0" />
|
||
<div className="absolute inset-x-4 bottom-4 xl:inset-x-5 xl:bottom-5 2xl:inset-x-6 2xl:bottom-6 flex items-center justify-between gap-5 p-4 xl:p-5 2xl:p-6 card rounded backdrop-blur-sm">
|
||
<div className="flex flex-col gap-1 min-w-0">
|
||
<h3 className="text-2xl font-semibold leading-snug truncate">{item.title}</h3>
|
||
<p className="text-base leading-snug truncate">{item.description}</p>
|
||
</div>
|
||
<a
|
||
href={item.buttonHref}
|
||
onClick={handleClick}
|
||
aria-label="View more"
|
||
className="flex items-center justify-center shrink-0 size-9 cursor-pointer primary-button rounded-full"
|
||
>
|
||
<Icon className="size-4 text-primary-cta-text" strokeWidth={2} />
|
||
</a>
|
||
</div>
|
||
</div>
|
||
);
|
||
};
|
||
|
||
const MenuInline = () => {
|
||
return (
|
||
<section aria-label="Features section" className="w-full py-20">
|
||
<div className="flex flex-col w-full gap-8 md:gap-10">
|
||
<div className="flex flex-col items-center w-content-width mx-auto gap-2">
|
||
<div className="px-3 py-1 mb-1 text-sm card rounded w-fit">
|
||
<p>{"Menü"}</p>
|
||
</div>
|
||
|
||
<TextAnimation
|
||
text={"İmza Lezzetler"}
|
||
variant="fade-blur"
|
||
gradientText={true}
|
||
tag="h2"
|
||
className="md:max-w-8/10 text-6xl 2xl:text-7xl leading-[1.15] font-semibold text-center text-balance"
|
||
/>
|
||
|
||
<TextAnimation
|
||
text={"El yapımı hamur, özel krema sos ve çıtır dokunuşlarla hazırlanan menümüzü keşfedin."}
|
||
variant="fade-blur"
|
||
gradientText={false}
|
||
tag="p"
|
||
className="md:max-w-7/10 text-lg md:text-xl leading-snug text-center text-balance"
|
||
/>
|
||
|
||
{(undefined || undefined) && (
|
||
<div className="flex flex-wrap justify-center gap-3 mt-2 md:mt-3">
|
||
{undefined && <Button text={undefined.text} href={undefined.href} variant="primary"/>}
|
||
{undefined && <Button text={undefined.text} href={undefined.href} variant="secondary"animationDelay={0.1} />}
|
||
</div>
|
||
)}
|
||
</div>
|
||
|
||
<LoopCarousel>
|
||
{items.map((item) => (
|
||
<FeatureMediaCarouselCard key={item.title} item={item} />
|
||
))}
|
||
</LoopCarousel>
|
||
</div>
|
||
</section>
|
||
);
|
||
};
|
||
|
||
export default function MenuSection() {
|
||
return (
|
||
<div data-webild-section="menu" id="menu">
|
||
<MenuInline />
|
||
</div>
|
||
);
|
||
}
|