Skip to content

Commit 3e01052

Browse files
committed
update recent project
1 parent 715df9d commit 3e01052

File tree

5 files changed

+34
-20
lines changed

5 files changed

+34
-20
lines changed

components/projectCard.jsx

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ import Image from "next/image";
33
import Icon from "@/components/icon";
44

55
export default function ProjectCard({ project, basePath }) {
6-
const imagePath = `${basePath}/images/projects/${project.label.toLowerCase().split(" ").join("_")}.jpg`;
6+
const imagePath = `${basePath}/images/projects/${project.label
7+
.toLowerCase()
8+
.split(" ")
9+
.join("_")}.jpg`;
710
return (
811
<div className="text-left sm:text-center rounded bg-grey py-2 sm:py-4 px-2 sm:px-8 w-full sm:w-60 flex sm:block gap-8">
912
<Image
@@ -14,18 +17,28 @@ export default function ProjectCard({ project, basePath }) {
1417
alt={project.label}
1518
/>
1619
<div className="">
17-
<h3 className="mb-1 text-2xl font-bold tracking-tight">{project.label}</h3>
20+
<h3 className="mb-1 text-2xl font-bold tracking-tight">
21+
{project.label}
22+
</h3>
1823
<ul className="flex sm:justify-center mt-2 sm:mt-4 space-x-4">
1924
{project.github && (
2025
<li>
21-
<Link href={project.github} className="hover:text-gray" aria-label="Github Repo">
26+
<Link
27+
href={project.github}
28+
className="hover:text-gray"
29+
aria-label="Github Repo"
30+
>
2231
<Icon name="github" className="text-3xl" />
2332
</Link>
2433
</li>
2534
)}
2635
{project.googleSlides && (
2736
<li>
28-
<Link href={project.googleSlides} className="hover:text-gray" aria-label="Google Slides">
37+
<Link
38+
href={project.googleSlides}
39+
className="hover:text-gray"
40+
aria-label="Google Slides"
41+
>
2942
<Icon name="file-pdf" className="text-3xl" />
3043
</Link>
3144
</li>

config/homepage.json

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
[
2-
{
3-
"name": "Image Colorization",
4-
"image": "image_colorization.png",
5-
"link": "https://docs.google.com/document/d/19CekIh2sZGKKMoRA5VNFEcjNGHc9GEYt/"
6-
},
7-
{
8-
"name": "Webscraping",
9-
"image": "webscraping.png",
10-
"link": "https://docs.google.com/document/d/1uVD5nvpA0lg9E8tE9khuEQDlwCwHKgrHGqtvzKe2JoA/"
11-
},
12-
{
13-
"name": "Footwear Classification",
14-
"image": "footwear_classification.png",
15-
"link": "https://docs.google.com/presentation/d/1Bb7nCc4o3fmV4OkR-NOeAwzl6i1E_BA_V937Gjoq1wc/"
16-
}
17-
]
2+
{
3+
"name": "LLM Augmentation",
4+
"image": "llm_augmentation.png",
5+
"link": "https://github.com/MichiganDataScienceTeam/W24-llm-augmentation"
6+
},
7+
8+
{
9+
"name": "Image Colorization",
10+
"image": "image_colorization.png",
11+
"link": "https://docs.google.com/document/d/19CekIh2sZGKKMoRA5VNFEcjNGHc9GEYt/"
12+
},
13+
{
14+
"name": "Real Vs Fake Face",
15+
"image": "rvf.png",
16+
"link": "https://github.com/MichiganDataScienceTeam/W24-RvF/tree/main"
17+
}
18+
]
-636 KB
Binary file not shown.

public/images/llm_augmentation.png

241 KB
Loading

public/images/rvf.png

445 KB
Loading

0 commit comments

Comments
 (0)