-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathProjectCard.tsx
More file actions
86 lines (79 loc) · 2.14 KB
/
ProjectCard.tsx
File metadata and controls
86 lines (79 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import styles from "./ProjectCard.module.scss";
import { Github, ExternalLink, Code } from "lucide-react";
interface ProjectCardProps {
title: string;
description: string;
previewImageUrl?: string;
githubUrl: string;
liveUrl?: string;
tags: string[];
author: string;
}
export function ProjectCard({
title,
description,
previewImageUrl,
githubUrl,
liveUrl,
tags,
author,
}: ProjectCardProps) {
return (
<div className={styles.card}>
<div className={styles.preview}>
{previewImageUrl ? (
<img src={"/placeholder.svg"} alt={`${title} preview`} />
) : (
<div className={styles.placeholder}>
<Code className={styles.codeIcon} />
<div className={styles.placeholderText}>
<p>Code Project</p>
<p className={styles.subtle}>No UI Preview</p>
</div>
</div>
)}
</div>
<div className={styles.content}>
<div className={styles.header}>
<div className={styles.titleSection}>
<h2 className={styles.title}>{title}</h2>
<p className={styles.author}>{author}</p>
</div>
</div>
<p className={styles.description}>{description}</p>
<div className={styles.tags}>
{tags.slice(0, 3).map((tag) => (
<span className={styles.tag} key={tag}>
{tag}
</span>
))}
{tags.length > 3 && (
<span className={styles.tag}>+{tags.length - 3}</span>
)}
</div>
<div className={styles.links}>
<a
href={githubUrl}
target="_blank"
rel="noopener noreferrer"
className={styles.codeButton}
>
<Github className={styles.icon} />
Code
</a>
{liveUrl && (
<a
href={liveUrl}
target="_blank"
rel="noopener noreferrer"
className={styles.demoButton}
>
<ExternalLink className={styles.icon} />
Demo
</a>
)}
</div>
</div>
</div>
);
}