调整前端目录结构

This commit is contained in:
2025-05-10 12:08:04 +08:00
parent 3c7d84165c
commit 8e09da9912
41 changed files with 2909 additions and 355 deletions

View File

@@ -0,0 +1,47 @@
import { Card, CardContent } from "@/components/ui/card";
import { Resource } from "@/lib/types/resource";
import Image from "next/image";
interface ResourceCardProps {
resource: Resource;
key: string;
}
export function ResourceCard({ resource, key }: ResourceCardProps) {
return (
<a href={resource.link} target="_blank" key={key}>
<Card className="w-full md:w-92 lg:w-100 md:rounded-xl rounded-none duration-300">
<CardContent>
<div className="flex gap-6">
<div>
<Image
src={resource.imageUrl}
alt="资源图片"
width={90}
height={90}
className="rounded-md shadow"
priority
quality={100}
/>
</div>
<div className="flex-1 overflow-x-hidden">
<div className="font-bold text-2xl">{resource.title}</div>
<div className="font-medium text-sm text-zinc-400 mt-1">{resource.description}</div>
<div className="flex gap-2 flex-wrap mt-4">
{
resource.tags.map((tag) => (
<div
id={tag.id}
className="text-[10px] text-zinc-500 font-medium py-[1px] px-1.5 rounded-full bg-zinc-200"
style={{ backgroundColor: tag.color }}
>{tag.name}</div>
))
}
</div>
</div>
</div>
</CardContent>
</Card>
</a>
)
}