Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

restructure projects ui #1542

Merged
merged 11 commits into from
Jan 11, 2025
Prev Previous commit
Next Next commit
fix list/key issue
raspberri05 committed Oct 21, 2024

Verified

This commit was signed with the committer’s verified signature.
raspberri05 Naya Singhania
commit 7e834e6b3996414ba0272a61a6a70292b9525e15
4 changes: 2 additions & 2 deletions src/Pages/Projects/Projects.js
Original file line number Diff line number Diff line change
@@ -49,9 +49,9 @@ export default function ProjectsPage() {
<p className="font-light text-gray-500 sm:text-xl dark:text-gray-400 mx-8">The SCE Development Team is open to all students, no prior experience is required!</p>
<br />
</div>
{projects.map((project, index) => (
{projects.map((project) => (
<>
<ProjectCard key={index} project={project} />
<ProjectCard key={project.name} project={project} />
raspberri05 marked this conversation as resolved.
Show resolved Hide resolved
<br />
<br />
</>