Created Card Sections

This commit is contained in:
aftabrehan
2024-02-02 10:05:16 +05:00
parent 71eb0dfed7
commit 637072301a
40 changed files with 2730 additions and 27 deletions

33
components/card.tsx Normal file
View File

@@ -0,0 +1,33 @@
import Link from 'next/link'
import Image from 'next/image'
interface cardProps {
link: string
imageUrl: string
title: string
description: string
}
export const Card = ({ link, imageUrl, title, description }: cardProps) => (
<Link
href={link}
className="w-full sm:max-w-[300px] h-[156px] xs:h-[168px] sm:h-[200px] flex flex-col justify-start items-start gap-3 sm:gap-4 p-4 sm:p-6 bg-white rounded-xl border border-gray-200 hover:shadow-card transition-all duration-200"
>
<Image
alt={title}
src={imageUrl}
width={64}
height={64}
className="w-10 xs:w-12 sm:w-16 h-10 xs:h-12 sm:h-16"
/>
<div className="flex flex-col justify-start items-start gap-2 sm:gap-3">
<h2 className="text-black text-md xs:text-lg sm:text-xl font-bold">
{title}
</h2>
<p className="text-zinc-700 text-opacity-60 text-sm font-medium line-clamp-2">
{description}
</p>
</div>
</Link>
)