diff --git a/components/projectCard.jsx b/components/projectCard.jsx
index 5456639..efd8f74 100644
--- a/components/projectCard.jsx
+++ b/components/projectCard.jsx
@@ -3,7 +3,10 @@ import Image from "next/image";
import Icon from "@/components/icon";
export default function ProjectCard({ project, basePath }) {
- const imagePath = `${basePath}/images/projects/${project.label.toLowerCase().split(" ").join("_")}.jpg`;
+ const imagePath = `${basePath}/images/projects/${project.label
+ .toLowerCase()
+ .split(" ")
+ .join("_")}.jpg`;
return (
-
{project.label}
+
+ {project.label}
+
{project.github && (
-
-
+
)}
{project.googleSlides && (
-
-
+
diff --git a/config/homepage.json b/config/homepage.json
index 921814e..77ee673 100644
--- a/config/homepage.json
+++ b/config/homepage.json
@@ -1,17 +1,18 @@
[
- {
- "name": "Image Colorization",
- "image": "image_colorization.png",
- "link": "https://docs.google.com/document/d/19CekIh2sZGKKMoRA5VNFEcjNGHc9GEYt/"
- },
- {
- "name": "Webscraping",
- "image": "webscraping.png",
- "link": "https://docs.google.com/document/d/1uVD5nvpA0lg9E8tE9khuEQDlwCwHKgrHGqtvzKe2JoA/"
- },
- {
- "name": "Footwear Classification",
- "image": "footwear_classification.png",
- "link": "https://docs.google.com/presentation/d/1Bb7nCc4o3fmV4OkR-NOeAwzl6i1E_BA_V937Gjoq1wc/"
- }
-]
\ No newline at end of file
+ {
+ "name": "LLM Augmentation",
+ "image": "llm_augmentation.png",
+ "link": "https://github.com/MichiganDataScienceTeam/W24-llm-augmentation"
+ },
+
+ {
+ "name": "Image Colorization",
+ "image": "image_colorization.png",
+ "link": "https://docs.google.com/document/d/19CekIh2sZGKKMoRA5VNFEcjNGHc9GEYt/"
+ },
+ {
+ "name": "Real Vs Fake Face",
+ "image": "rvf.png",
+ "link": "https://github.com/MichiganDataScienceTeam/W24-RvF/tree/main"
+ }
+]
diff --git a/public/images/footwear_classification.png b/public/images/footwear_classification.png
deleted file mode 100644
index cf1369a..0000000
Binary files a/public/images/footwear_classification.png and /dev/null differ
diff --git a/public/images/llm_augmentation.png b/public/images/llm_augmentation.png
new file mode 100644
index 0000000..9930bd5
Binary files /dev/null and b/public/images/llm_augmentation.png differ
diff --git a/public/images/rvf.png b/public/images/rvf.png
new file mode 100644
index 0000000..9b92d3f
Binary files /dev/null and b/public/images/rvf.png differ