Files
poyraz-portfolio/components/home-projects-section.tsx
T

70 lines
2.1 KiB
TypeScript

"use client";
import { Icon } from "@iconify/react";
import { useLocale, useTranslations } from "next-intl";
import { Button, ButtonIcon, ButtonLabel, Typography } from "poyraz-ui/atoms";
import { ImageCard } from "poyraz-ui/molecules";
import { useRouter } from "@/i18n/routing";
import { WEB_APPS } from "@/data/projects";
import { getLocalizedValue } from "@/lib/locale";
export function HomeProjectsSection() {
const t = useTranslations("Home");
const locale = useLocale();
const router = useRouter();
const projects = WEB_APPS.slice(0, 4);
return (
<section className="space-y-3">
<div className="flex items-center justify-between gap-4">
<Typography
variant="h3"
component="h2"
className="tracking-[-0.035em]"
>
{t("projectsTitle")}
</Typography>
<Button
type="button"
size="sm"
radius="sm"
effect="swap"
swapTarget="both"
onClick={() => router.push("/projects")}
>
<ButtonLabel>{t("allProjects")}</ButtonLabel>
<ButtonIcon>
<Icon icon="mdi:arrow-right" width={15} height={15} />
</ButtonIcon>
</Button>
</div>
<div className="relative overflow-hidden py-1">
<div className="flex w-max items-stretch gap-3">
{projects.map((project) => (
<ImageCard
key={project.id}
image={project.image}
title={project.title}
description={getLocalizedValue(project.description, locale)}
badge={
project.badge
? getLocalizedValue(project.badge, locale)
: undefined
}
href={project.href}
className="aspect-square w-72 shrink-0 rounded-sm border-border"
/>
))}
</div>
<div
aria-hidden="true"
className="pointer-events-none absolute top-0 right-0 h-full w-24 bg-linear-to-l from-background via-background/80 to-transparent"
/>
</div>
</section>
);
}