aboutsummaryrefslogtreecommitdiff
path: root/src/pages/Projects.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/Projects.tsx')
-rw-r--r--src/pages/Projects.tsx24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/pages/Projects.tsx b/src/pages/Projects.tsx
deleted file mode 100644
index 973eaa0..0000000
--- a/src/pages/Projects.tsx
+++ /dev/null
@@ -1,24 +0,0 @@
-import Card from '../components/Card';
-import { projects, type Project } from '../data/projects';
-
-export default function Projects() {
- return (
- <>
- <title>߸ projects</title>
- <h1>Projects</h1>
-
- <ul className="space-y-2">
- {projects.map((p: Project) => (
- <li key={p.name}>
- <Card
- title={p.name}
- body={p.description}
- href={p.url}
- imgSrc={p.image}
- />
- </li>
- ))}
- </ul>
- </>
- );
-}