feat(screen): add about, mission page

This commit is contained in:
shafin-r
2025-12-06 18:33:48 +06:00
parent d47a7c5311
commit 2707d4bef7
4 changed files with 92 additions and 1 deletions

23
components/Carousel.tsx Normal file
View File

@ -0,0 +1,23 @@
"use client";
export default function CardCarousel() {
const cards = [
{ id: 1, title: "Card 1" },
{ id: 2, title: "Card 2" },
{ id: 3, title: "Card 3" },
{ id: 4, title: "Card 4" },
];
return (
<div className="w-full overflow-x-scroll flex gap-4 snap-x snap-mandatory scroll-smooth no-scrollbar px-4 py-6">
{cards.map((card) => (
<div
key={card.id}
className="snap-center min-w-[250px] h-[180px] rounded-xl bg-gray-800 text-white flex items-center justify-center text-xl font-semibold"
>
{card.title}
</div>
))}
</div>
);
}