Skip to content

Commit 928194e

Browse files
committed
[ ADD ] List another current ongoing project
- Fix some spacing and width
1 parent 6b3ea42 commit 928194e

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

public/projects/ancestralink.png

19.3 KB
Loading

src/components/ProjectCard.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const ProjectCard = ({ project }) => {
77
const getTechColor = (tech) => techColors[tech] || "bg-white/20 text-white";
88

99
return (
10-
<div className="w-[360px] flex-shrink-0 px-4">
10+
<div className="w-[300px] mmd:w-[340px] lg:w-[360px] flex-shrink-0 px-4">
1111
<Card className="h-[550px] overflow-hidden relative group dark:border-gray-700">
1212
{/* Background Image */}
1313
<div className="absolute inset-0 w-full h-full">

src/components/Projects.jsx

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,16 @@ const Projects = () => {
4747
},
4848
{
4949
id: 5,
50+
title: "AncestraLink API",
51+
description: "A platform to preserve, explore, and share cultural heritage from around the world. The idea is to bring communities together through storytelling and multimedia content. ",
52+
image: "projects/ancestralink.png",
53+
techStack: ["Python", "FastAPI", "PostgreSQL", "Postman", "RESTful API"],
54+
status: "ongoing",
55+
category: "Backend API",
56+
link: "https://github.com/JjayFabor/ancestralink-backend"
57+
},
58+
{
59+
id: 6,
5060
title: "BridgeAI",
5161
description: "An educational platform for personalized learning.",
5262
image: "projects/bridgeAI.png",
@@ -118,7 +128,7 @@ const Projects = () => {
118128

119129
return (
120130
<section id="projects" className="py-4 bg-gray-50 dark:bg-gray-900">
121-
<div className="max-w-6xl mx-auto px-4">
131+
<div className="max-w-7xl mx-auto px-4">
122132
<h2 className="text-4xl font-bold mb-10 text-center text-gray-900 dark:text-white">Projects</h2>
123133

124134
<div className="flex justify-center gap-2 mb-10 flex-wrap">
@@ -139,7 +149,7 @@ const Projects = () => {
139149

140150
{filteredProjects.length > 0 ? (
141151
<div ref={sliderRef} className="overflow-x-auto pb-4 cursor-grab">
142-
<div className="flex gap-6">
152+
<div className="flex gap-4">
143153
{filteredProjects.map((project) => (
144154
<ProjectCard key={project.id} project={project} />
145155
))}

0 commit comments

Comments
 (0)