- {Object.entries(groupedLinks).map(([subdirectory, links]) => (
-
-
{subdirectory}
-
- {links.map((link, index) => (
- -
- {
- link.type != "none" ?
- {link.label}
- : link.label
- }
+
+
+
+
+
+
Current Projects
+
+
+ {currentProjects.map((project, index) => (
+
+ ))}
+
+
+
+ {Object.entries(groupedLinks).sort((a, b) => {
+ const [aSeason, aYear] = a[0].split(" ");
+ const [bSeason, bYear] = b[0].split(" ");
+ const seasonOrder = { Winter: 0, Fall: 1 };
+
+ if (aYear === bYear) {
+ return seasonOrder[aSeason] - seasonOrder[bSeason];
+ } else {
+ return parseInt(bYear) - parseInt(aYear);
+ }
+ }).map(([semester, projects]) => (
+
+ ))}
+
+ );
+}
-
- ))}
-
-
+function GroupSection({ semester, projects, basePath }) {
+ return (
+
+
+
{semester}
+
+
+ {projects.map((project, index) => (
+
))}
-
+
);
}
-
export async function getStaticProps() {
- const projectsDirectory = path.join(process.cwd(), "public", "projects");
- const subdirectories = fs
- .readdirSync(projectsDirectory, { withFileTypes: true })
- .filter((dirent) => dirent.isDirectory())
- .map((dirent) => ({
- name: dirent.name,
- }))
- .sort((a, b) => {
- const order = ['Fall_', 'Winter_'];
-
- const getOrderIndex = (dirName) => {
- const prefix = order.find(prefix => dirName.startsWith(prefix));
- return prefix ? 0 : 1;
- };
-
- const orderComparison = getOrderIndex(a.name) - getOrderIndex(b.name);
-
- if (orderComparison !== 0) {
- return orderComparison;
- } else if (getOrderIndex(a.name) === 0) {
- const aNumber = parseInt(a.name.split('_')[1]);
- const bNumber = parseInt(b.name.split('_')[1]);
- return bNumber - aNumber;
- } else {
- return a.name.localeCompare(b.name)
- }
-
- });;
-
- const groupedLinks = {};
- const paths = []
- subdirectories.forEach((subdirectory) => {
- const subdirectoryPath = path.join(projectsDirectory, subdirectory.name);
- const innerDirectories = fs
- .readdirSync(subdirectoryPath, { withFileTypes: true })
- .filter((dirent) => dirent.isDirectory())
- .map((dirent) => dirent.name);
-
- const links = [];
+ const pastProjectsPath = path.join(process.cwd(), "config", "pastProjects.json");
+ const pastProjects = JSON.parse(fs.readFileSync(pastProjectsPath, "utf-8"));
- innerDirectories.forEach((innerDir) => {
- const innerDirPath = path.join(subdirectoryPath, innerDir);
+ const groupedLinks = Object.entries(pastProjects).reduce((acc, [semester, projects]) => {
+ acc[semester] = projects.map(project => ({
+ ...project
+ }));
+ return acc;
+ }, {});
- const writeupMdPath = path.join(innerDirPath, "writeup.md");
- const writeupPdfPath = path.join(innerDirPath, "writeup.pdf");
- const linkTxtPath = path.join(innerDirPath, "link.txt");
-
- const label = innerDir.split("_")
- .join(" ");
- let type, href
-
- if (fs.existsSync(linkTxtPath)) {
- const link = fs.readFileSync(linkTxtPath, 'utf-8').trim();
- href = link
- type = "link"
- } else if (fs.existsSync(writeupMdPath)) {
- href = `/projects/${subdirectory.name}/${innerDir}`
- type = "md"
- }
- else if (fs.existsSync(writeupPdfPath)) {
- href = `/projects/${subdirectory.name}/${innerDir}/writeup.pdf`
- type = "pdf"
- } else {
- href = ""
- type = "none"
- }
- links.push({ label, href, type })
-
- });
-
- if (links.length > 0) {
- groupedLinks[subdirectory.name.split("_").join(" ")] = links;
- }
-
- });
+ const currentProjectsPath = path.join(process.cwd(), "config", "currentProjects.json");
+ const currentProjects = JSON.parse(fs.readFileSync(currentProjectsPath, "utf-8"));
return {
props: {
groupedLinks,
+ currentProjects,
},
};
}
-
diff --git a/public/images/projects/automated_poker_bot.jpg b/public/images/projects/automated_poker_bot.jpg
new file mode 100644
index 0000000..7f958ae
Binary files /dev/null and b/public/images/projects/automated_poker_bot.jpg differ
diff --git a/public/images/projects/car_brand_classification.jpg b/public/images/projects/car_brand_classification.jpg
new file mode 100644
index 0000000..fb4e8f1
Binary files /dev/null and b/public/images/projects/car_brand_classification.jpg differ
diff --git a/public/images/projects/codenames.jpg b/public/images/projects/codenames.jpg
new file mode 100644
index 0000000..5561747
Binary files /dev/null and b/public/images/projects/codenames.jpg differ
diff --git a/public/images/projects/college_football.jpg b/public/images/projects/college_football.jpg
new file mode 100644
index 0000000..6ab05cb
Binary files /dev/null and b/public/images/projects/college_football.jpg differ
diff --git a/public/images/projects/college_football_success_factors.jpg b/public/images/projects/college_football_success_factors.jpg
new file mode 100644
index 0000000..9b8ec09
Binary files /dev/null and b/public/images/projects/college_football_success_factors.jpg differ
diff --git a/public/images/projects/cracking_wordle.jpg b/public/images/projects/cracking_wordle.jpg
new file mode 100644
index 0000000..863e29b
Binary files /dev/null and b/public/images/projects/cracking_wordle.jpg differ
diff --git a/public/images/projects/dogs_vs_cats.jpg b/public/images/projects/dogs_vs_cats.jpg
new file mode 100644
index 0000000..63dfc52
Binary files /dev/null and b/public/images/projects/dogs_vs_cats.jpg differ
diff --git a/public/images/projects/economic_forecasting.jpg b/public/images/projects/economic_forecasting.jpg
new file mode 100644
index 0000000..2852133
Binary files /dev/null and b/public/images/projects/economic_forecasting.jpg differ
diff --git a/public/images/projects/facial_recognition.jpg b/public/images/projects/facial_recognition.jpg
new file mode 100644
index 0000000..de9ee26
Binary files /dev/null and b/public/images/projects/facial_recognition.jpg differ
diff --git a/public/images/projects/footwear_image_classification.jpg b/public/images/projects/footwear_image_classification.jpg
new file mode 100644
index 0000000..5d41546
Binary files /dev/null and b/public/images/projects/footwear_image_classification.jpg differ
diff --git a/public/images/projects/image_colorization.jpg b/public/images/projects/image_colorization.jpg
new file mode 100644
index 0000000..e96ac37
Binary files /dev/null and b/public/images/projects/image_colorization.jpg differ
diff --git a/public/images/projects/image_super_resolution.jpg b/public/images/projects/image_super_resolution.jpg
new file mode 100644
index 0000000..3c396fa
Binary files /dev/null and b/public/images/projects/image_super_resolution.jpg differ
diff --git a/public/images/projects/language_translation_application.jpg b/public/images/projects/language_translation_application.jpg
new file mode 100644
index 0000000..53adab8
Binary files /dev/null and b/public/images/projects/language_translation_application.jpg differ
diff --git a/public/images/projects/llm_augmentation.jpg b/public/images/projects/llm_augmentation.jpg
new file mode 100644
index 0000000..3de1dad
Binary files /dev/null and b/public/images/projects/llm_augmentation.jpg differ
diff --git a/public/images/projects/mini_copilot.jpg b/public/images/projects/mini_copilot.jpg
new file mode 100644
index 0000000..ba12a73
Binary files /dev/null and b/public/images/projects/mini_copilot.jpg differ
diff --git a/public/images/projects/mini_dall-e.jpg b/public/images/projects/mini_dall-e.jpg
new file mode 100644
index 0000000..c397bb1
Binary files /dev/null and b/public/images/projects/mini_dall-e.jpg differ
diff --git a/public/images/projects/mooc_data_analysis.jpg b/public/images/projects/mooc_data_analysis.jpg
new file mode 100644
index 0000000..4aae338
Binary files /dev/null and b/public/images/projects/mooc_data_analysis.jpg differ
diff --git a/public/images/projects/movie_quote_sentiment_analysis.jpg b/public/images/projects/movie_quote_sentiment_analysis.jpg
new file mode 100644
index 0000000..fc32b21
Binary files /dev/null and b/public/images/projects/movie_quote_sentiment_analysis.jpg differ
diff --git a/public/images/projects/network_intrusion_detection.jpg b/public/images/projects/network_intrusion_detection.jpg
new file mode 100644
index 0000000..8835f64
Binary files /dev/null and b/public/images/projects/network_intrusion_detection.jpg differ
diff --git a/public/images/projects/neural_nets_from_scratch.jpg b/public/images/projects/neural_nets_from_scratch.jpg
new file mode 100644
index 0000000..2be140e
Binary files /dev/null and b/public/images/projects/neural_nets_from_scratch.jpg differ
diff --git a/public/images/projects/nhanes.jpg b/public/images/projects/nhanes.jpg
new file mode 100644
index 0000000..2527655
Binary files /dev/null and b/public/images/projects/nhanes.jpg differ
diff --git a/public/images/projects/pokemon_data_science.jpg b/public/images/projects/pokemon_data_science.jpg
new file mode 100644
index 0000000..aebc73e
Binary files /dev/null and b/public/images/projects/pokemon_data_science.jpg differ
diff --git a/public/images/projects/poker_bot.jpg b/public/images/projects/poker_bot.jpg
new file mode 100644
index 0000000..9f1c634
Binary files /dev/null and b/public/images/projects/poker_bot.jpg differ
diff --git a/public/images/projects/real_vs_fake_faces.jpg b/public/images/projects/real_vs_fake_faces.jpg
new file mode 100644
index 0000000..f8aa1cf
Binary files /dev/null and b/public/images/projects/real_vs_fake_faces.jpg differ
diff --git a/public/images/projects/real_vs_photoshopped_faces.jpg b/public/images/projects/real_vs_photoshopped_faces.jpg
new file mode 100644
index 0000000..bd85ab3
Binary files /dev/null and b/public/images/projects/real_vs_photoshopped_faces.jpg differ
diff --git a/public/images/projects/reinforcement_learning copy.jpg b/public/images/projects/reinforcement_learning copy.jpg
new file mode 100644
index 0000000..c7bce10
Binary files /dev/null and b/public/images/projects/reinforcement_learning copy.jpg differ
diff --git a/public/images/projects/reinforcement_learning.jpg b/public/images/projects/reinforcement_learning.jpg
new file mode 100644
index 0000000..c7bce10
Binary files /dev/null and b/public/images/projects/reinforcement_learning.jpg differ
diff --git a/public/images/projects/research_grant_analysis.jpg b/public/images/projects/research_grant_analysis.jpg
new file mode 100644
index 0000000..ca9955e
Binary files /dev/null and b/public/images/projects/research_grant_analysis.jpg differ
diff --git a/public/images/projects/rmp_sentiment_analysis.jpg b/public/images/projects/rmp_sentiment_analysis.jpg
new file mode 100644
index 0000000..3179efd
Binary files /dev/null and b/public/images/projects/rmp_sentiment_analysis.jpg differ
diff --git a/public/images/projects/sec_insider_trading.jpg b/public/images/projects/sec_insider_trading.jpg
new file mode 100644
index 0000000..8d9d884
Binary files /dev/null and b/public/images/projects/sec_insider_trading.jpg differ
diff --git a/public/images/projects/sentence_completer.jpg b/public/images/projects/sentence_completer.jpg
new file mode 100644
index 0000000..4c4ccdd
Binary files /dev/null and b/public/images/projects/sentence_completer.jpg differ
diff --git a/public/images/projects/shazam_clone.jpg b/public/images/projects/shazam_clone.jpg
new file mode 100644
index 0000000..9948a13
Binary files /dev/null and b/public/images/projects/shazam_clone.jpg differ
diff --git a/public/images/projects/soccerNet.jpg b/public/images/projects/soccerNet.jpg
new file mode 100644
index 0000000..f2ad649
Binary files /dev/null and b/public/images/projects/soccerNet.jpg differ
diff --git a/public/images/projects/sports_data_science.jpg b/public/images/projects/sports_data_science.jpg
new file mode 100644
index 0000000..4ea40e1
Binary files /dev/null and b/public/images/projects/sports_data_science.jpg differ
diff --git a/public/images/projects/spotify_analysis.jpg b/public/images/projects/spotify_analysis.jpg
new file mode 100644
index 0000000..c41da16
Binary files /dev/null and b/public/images/projects/spotify_analysis.jpg differ
diff --git a/public/images/projects/stock_market_analysis.jpg b/public/images/projects/stock_market_analysis.jpg
new file mode 100644
index 0000000..0e2b10b
Binary files /dev/null and b/public/images/projects/stock_market_analysis.jpg differ
diff --git a/public/images/projects/tiktok_videos.jpg b/public/images/projects/tiktok_videos.jpg
new file mode 100644
index 0000000..6b96c4d
Binary files /dev/null and b/public/images/projects/tiktok_videos.jpg differ
diff --git a/public/images/projects/tldr_machine.jpg b/public/images/projects/tldr_machine.jpg
new file mode 100644
index 0000000..5222b21
Binary files /dev/null and b/public/images/projects/tldr_machine.jpg differ
diff --git a/public/images/projects/twitter_chatbot.jpg b/public/images/projects/twitter_chatbot.jpg
new file mode 100644
index 0000000..04ae0da
Binary files /dev/null and b/public/images/projects/twitter_chatbot.jpg differ
diff --git a/public/images/projects/twitter_sentiment_analysis.jpg b/public/images/projects/twitter_sentiment_analysis.jpg
new file mode 100644
index 0000000..29c0067
Binary files /dev/null and b/public/images/projects/twitter_sentiment_analysis.jpg differ
diff --git a/public/images/projects/vit_from_scratch.jpg b/public/images/projects/vit_from_scratch.jpg
new file mode 100644
index 0000000..4ddbcd3
Binary files /dev/null and b/public/images/projects/vit_from_scratch.jpg differ
diff --git a/public/images/projects/webscraping.jpg b/public/images/projects/webscraping.jpg
new file mode 100644
index 0000000..7890cca
Binary files /dev/null and b/public/images/projects/webscraping.jpg differ
diff --git a/public/images/projects/wildfire_spread_prediction.jpg b/public/images/projects/wildfire_spread_prediction.jpg
new file mode 100644
index 0000000..e971480
Binary files /dev/null and b/public/images/projects/wildfire_spread_prediction.jpg differ
diff --git a/public/images/sponsors/umsi.png b/public/images/sponsors/umsi.png
new file mode 100644
index 0000000..26e2b2e
Binary files /dev/null and b/public/images/sponsors/umsi.png differ
diff --git a/public/images/team/adikashi.jpg b/public/images/team/adikashi.jpg
new file mode 100644
index 0000000..d11b562
Binary files /dev/null and b/public/images/team/adikashi.jpg differ
diff --git a/public/images/team/advay.jpeg b/public/images/team/advay.jpeg
deleted file mode 100644
index 4ad0b64..0000000
Binary files a/public/images/team/advay.jpeg and /dev/null differ
diff --git a/public/images/team/amiralid.png b/public/images/team/amiralid.png
new file mode 100644
index 0000000..572484e
Binary files /dev/null and b/public/images/team/amiralid.png differ
diff --git a/public/images/team/andbl.jpeg b/public/images/team/andbl.jpeg
new file mode 100644
index 0000000..d79a504
Binary files /dev/null and b/public/images/team/andbl.jpeg differ
diff --git a/public/images/team/andreye.jpeg b/public/images/team/andreye.jpeg
deleted file mode 100644
index 4a97f65..0000000
Binary files a/public/images/team/andreye.jpeg and /dev/null differ
diff --git a/public/images/team/anthoc.jpeg b/public/images/team/anthoc.jpeg
new file mode 100644
index 0000000..db1c123
Binary files /dev/null and b/public/images/team/anthoc.jpeg differ
diff --git a/public/images/team/aweyhing.JPG b/public/images/team/aweyhing.JPG
new file mode 100644
index 0000000..66328fe
Binary files /dev/null and b/public/images/team/aweyhing.JPG differ
diff --git a/public/images/team/aweyhing.jpeg b/public/images/team/aweyhing.jpeg
deleted file mode 100644
index 01eeb1b..0000000
Binary files a/public/images/team/aweyhing.jpeg and /dev/null differ
diff --git a/public/images/team/bneilb.jpeg b/public/images/team/bneilb.jpeg
deleted file mode 100644
index 23986b9..0000000
Binary files a/public/images/team/bneilb.jpeg and /dev/null differ
diff --git a/public/images/team/casperg.jpeg b/public/images/team/casperg.jpeg
deleted file mode 100644
index 4870404..0000000
Binary files a/public/images/team/casperg.jpeg and /dev/null differ
diff --git a/public/images/team/clindaru.jpeg b/public/images/team/clindaru.jpeg
deleted file mode 100644
index 7bcf8b3..0000000
Binary files a/public/images/team/clindaru.jpeg and /dev/null differ
diff --git a/public/images/team/clindaru.png b/public/images/team/clindaru.png
new file mode 100644
index 0000000..da0d331
Binary files /dev/null and b/public/images/team/clindaru.png differ
diff --git a/public/images/team/dennis.jpeg b/public/images/team/dennis.jpeg
new file mode 100644
index 0000000..0f014d3
Binary files /dev/null and b/public/images/team/dennis.jpeg differ
diff --git a/public/images/team/ealcott.jpg b/public/images/team/ealcott.jpg
new file mode 100644
index 0000000..c76136d
Binary files /dev/null and b/public/images/team/ealcott.jpg differ
diff --git a/public/images/team/elaszwaj.jpg b/public/images/team/elaszwaj.jpg
new file mode 100644
index 0000000..8683bb7
Binary files /dev/null and b/public/images/team/elaszwaj.jpg differ
diff --git a/public/images/team/ellechen.jpeg b/public/images/team/ellechen.jpeg
deleted file mode 100644
index 2665111..0000000
Binary files a/public/images/team/ellechen.jpeg and /dev/null differ
diff --git a/public/images/team/ellechen.png b/public/images/team/ellechen.png
new file mode 100644
index 0000000..353d511
Binary files /dev/null and b/public/images/team/ellechen.png differ
diff --git a/public/images/team/glenngr.jpeg b/public/images/team/glenngr.jpeg
new file mode 100644
index 0000000..14fef45
Binary files /dev/null and b/public/images/team/glenngr.jpeg differ
diff --git a/public/images/team/gosreya.jpeg b/public/images/team/gosreya.jpeg
deleted file mode 100644
index 3999e61..0000000
Binary files a/public/images/team/gosreya.jpeg and /dev/null differ
diff --git a/public/images/team/grubbse.jpeg b/public/images/team/grubbse.jpeg
deleted file mode 100644
index 1bf4f97..0000000
Binary files a/public/images/team/grubbse.jpeg and /dev/null differ
diff --git a/public/images/team/harishj.png b/public/images/team/harishj.png
new file mode 100644
index 0000000..11d63d8
Binary files /dev/null and b/public/images/team/harishj.png differ
diff --git a/public/images/team/hyshu.jpeg b/public/images/team/hyshu.jpeg
deleted file mode 100644
index fb4c9a5..0000000
Binary files a/public/images/team/hyshu.jpeg and /dev/null differ
diff --git a/public/images/team/igiallan.jpeg b/public/images/team/igiallan.jpeg
new file mode 100644
index 0000000..b16ec9e
Binary files /dev/null and b/public/images/team/igiallan.jpeg differ
diff --git a/public/images/team/jeremoon.png b/public/images/team/jeremoon.png
new file mode 100644
index 0000000..5c62260
Binary files /dev/null and b/public/images/team/jeremoon.png differ
diff --git a/public/images/team/jleeone.jpeg b/public/images/team/jleeone.jpeg
new file mode 100644
index 0000000..675f3ba
Binary files /dev/null and b/public/images/team/jleeone.jpeg differ
diff --git a/public/images/team/jmshaver.jpeg b/public/images/team/jmshaver.jpeg
deleted file mode 100644
index 91fa0af..0000000
Binary files a/public/images/team/jmshaver.jpeg and /dev/null differ
diff --git a/public/images/team/jordanrj.jpeg b/public/images/team/jordanrj.jpeg
new file mode 100644
index 0000000..b6e16c9
Binary files /dev/null and b/public/images/team/jordanrj.jpeg differ
diff --git a/public/images/team/jprhee.jpeg b/public/images/team/jprhee.jpeg
deleted file mode 100644
index 33fea3a..0000000
Binary files a/public/images/team/jprhee.jpeg and /dev/null differ
diff --git a/public/images/team/jsochava.JPG b/public/images/team/jsochava.JPG
new file mode 100644
index 0000000..db91f1e
Binary files /dev/null and b/public/images/team/jsochava.JPG differ
diff --git a/public/images/team/kajalpat.png b/public/images/team/kajalpat.png
new file mode 100644
index 0000000..0230529
Binary files /dev/null and b/public/images/team/kajalpat.png differ
diff --git a/public/images/team/lukeyang.jpeg b/public/images/team/lukeyang.jpeg
new file mode 100644
index 0000000..b595843
Binary files /dev/null and b/public/images/team/lukeyang.jpeg differ
diff --git a/public/images/team/madrutis.jpg b/public/images/team/madrutis.jpg
new file mode 100644
index 0000000..c6966c6
Binary files /dev/null and b/public/images/team/madrutis.jpg differ
diff --git a/public/images/team/mandali.jpeg b/public/images/team/mandali.jpeg
deleted file mode 100644
index 8f52dae..0000000
Binary files a/public/images/team/mandali.jpeg and /dev/null differ
diff --git a/public/images/team/mipeng.jpeg b/public/images/team/mipeng.jpeg
deleted file mode 100644
index e9b62ca..0000000
Binary files a/public/images/team/mipeng.jpeg and /dev/null differ
diff --git a/public/images/team/neeyam.jpeg b/public/images/team/neeyam.jpeg
new file mode 100644
index 0000000..a5fc790
Binary files /dev/null and b/public/images/team/neeyam.jpeg differ
diff --git a/public/images/team/niyatik.jpeg b/public/images/team/niyatik.jpeg
deleted file mode 100644
index e581d51..0000000
Binary files a/public/images/team/niyatik.jpeg and /dev/null differ
diff --git a/public/images/team/niyatik.jpg b/public/images/team/niyatik.jpg
new file mode 100644
index 0000000..4ec1cf8
Binary files /dev/null and b/public/images/team/niyatik.jpg differ
diff --git a/public/images/team/rathreya.jpeg b/public/images/team/rathreya.jpeg
deleted file mode 100644
index 8ed5568..0000000
Binary files a/public/images/team/rathreya.jpeg and /dev/null differ
diff --git a/public/images/team/rathreya.jpg b/public/images/team/rathreya.jpg
new file mode 100644
index 0000000..64c07f3
Binary files /dev/null and b/public/images/team/rathreya.jpg differ
diff --git a/public/images/team/shivac.jpg b/public/images/team/shivac.jpg
new file mode 100644
index 0000000..306bd50
Binary files /dev/null and b/public/images/team/shivac.jpg differ
diff --git a/public/images/team/skunich.jpeg b/public/images/team/skunich.jpeg
deleted file mode 100644
index 7c1200b..0000000
Binary files a/public/images/team/skunich.jpeg and /dev/null differ
diff --git a/public/images/team/sriyan.png b/public/images/team/sriyan.png
new file mode 100644
index 0000000..5ae36fb
Binary files /dev/null and b/public/images/team/sriyan.png differ
diff --git a/public/images/team/tansam.jpeg b/public/images/team/tansam.jpeg
deleted file mode 100644
index d6d0e68..0000000
Binary files a/public/images/team/tansam.jpeg and /dev/null differ
diff --git a/public/images/team/taylornl.jpeg b/public/images/team/taylornl.jpeg
deleted file mode 100644
index 4788ca1..0000000
Binary files a/public/images/team/taylornl.jpeg and /dev/null differ
diff --git a/public/images/team/taylornl.png b/public/images/team/taylornl.png
new file mode 100644
index 0000000..7b5a963
Binary files /dev/null and b/public/images/team/taylornl.png differ
diff --git a/public/images/team/temp.jpeg b/public/images/team/temp.jpeg
new file mode 100644
index 0000000..d1e391b
Binary files /dev/null and b/public/images/team/temp.jpeg differ
diff --git a/public/images/team/temp.png b/public/images/team/temp.png
deleted file mode 100644
index fa0fa8d..0000000
Binary files a/public/images/team/temp.png and /dev/null differ
diff --git a/public/images/team/tiernanj.jpg b/public/images/team/tiernanj.jpg
new file mode 100644
index 0000000..a7be78e
Binary files /dev/null and b/public/images/team/tiernanj.jpg differ
diff --git a/public/images/team/tomsherm.jpeg b/public/images/team/tomsherm.jpeg
deleted file mode 100644
index 21cbb9e..0000000
Binary files a/public/images/team/tomsherm.jpeg and /dev/null differ
diff --git a/public/images/team/xinyaxu.jpeg b/public/images/team/xinyaxu.jpeg
deleted file mode 100644
index 84a8317..0000000
Binary files a/public/images/team/xinyaxu.jpeg and /dev/null differ
diff --git a/public/images/team/yueqiren.JPG b/public/images/team/yueqiren.JPG
new file mode 100644
index 0000000..bbc3fbe
Binary files /dev/null and b/public/images/team/yueqiren.JPG differ
diff --git a/public/images/team/yueqiren.jpeg b/public/images/team/yueqiren.jpeg
deleted file mode 100644
index f3a5a0c..0000000
Binary files a/public/images/team/yueqiren.jpeg and /dev/null differ
diff --git a/public/projects/Fall_2022/College_Football/.gitkeep b/public/projects/Fall_2022/College_Football/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/public/projects/Fall_2022/Dogs_vs_Cats/.gitkeep b/public/projects/Fall_2022/Dogs_vs_Cats/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/public/projects/Fall_2022/Image_Super_Resolution/.gitkeep b/public/projects/Fall_2022/Image_Super_Resolution/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/public/projects/Fall_2022/Language_Translation_Application/.gitkeep b/public/projects/Fall_2022/Language_Translation_Application/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/public/projects/Fall_2022/Pokemon_Data_Science/.gitkeep b/public/projects/Fall_2022/Pokemon_Data_Science/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/public/projects/Fall_2022/SEC_Insider_Information/.gitkeep b/public/projects/Fall_2022/SEC_Insider_Information/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/public/projects/Fall_2022/Sports_Data_Science/.gitkeep b/public/projects/Fall_2022/Sports_Data_Science/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/public/projects/Fall_2022/TLDR_Machine/.gitkeep b/public/projects/Fall_2022/TLDR_Machine/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/public/projects/Fall_2022/Twitter_Sentiment_Analysis/.gitkeep b/public/projects/Fall_2022/Twitter_Sentiment_Analysis/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/public/projects/Winter_2023/Footwear_Image_Classification/.gitkeep b/public/projects/Winter_2023/Footwear_Image_Classification/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/public/projects/Winter_2023/Footwear_Image_Classification/link.txt b/public/projects/Winter_2023/Footwear_Image_Classification/link.txt
deleted file mode 100644
index 3c1187b..0000000
--- a/public/projects/Winter_2023/Footwear_Image_Classification/link.txt
+++ /dev/null
@@ -1 +0,0 @@
-https://docs.google.com/presentation/d/1Bb7nCc4o3fmV4OkR-NOeAwzl6i1E_BA_V937Gjoq1wc/
\ No newline at end of file
diff --git a/public/projects/Winter_2023/Image_Colorization/.gitkeep b/public/projects/Winter_2023/Image_Colorization/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/public/projects/Winter_2023/Image_Colorization/link.txt b/public/projects/Winter_2023/Image_Colorization/link.txt
deleted file mode 100644
index 77a6fb0..0000000
--- a/public/projects/Winter_2023/Image_Colorization/link.txt
+++ /dev/null
@@ -1 +0,0 @@
-https://docs.google.com/document/d/19CekIh2sZGKKMoRA5VNFEcjNGHc9GEYt/
\ No newline at end of file
diff --git a/public/projects/Winter_2023/MOOC_Data_Analysis/.gitkeep b/public/projects/Winter_2023/MOOC_Data_Analysis/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/public/projects/Winter_2023/Mini_DALL-E/.gitkeep b/public/projects/Winter_2023/Mini_DALL-E/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/public/projects/Winter_2023/Movie_Quote_Sentiment_Analysis/.gitkeep b/public/projects/Winter_2023/Movie_Quote_Sentiment_Analysis/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/public/projects/Winter_2023/Twitter_Chatbot/.gitkeep b/public/projects/Winter_2023/Twitter_Chatbot/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/public/projects/Winter_2023/Twitter_Chatbot/link.txt b/public/projects/Winter_2023/Twitter_Chatbot/link.txt
deleted file mode 100644
index 5fa2d65..0000000
--- a/public/projects/Winter_2023/Twitter_Chatbot/link.txt
+++ /dev/null
@@ -1 +0,0 @@
-https://docs.google.com/document/d/1_vf3Snj2KxcnSunW7eRLbDOLffrK5OKGKrFRIFLYDpM/
\ No newline at end of file
diff --git a/public/projects/Winter_2023/Webscraping/.gitkeep b/public/projects/Winter_2023/Webscraping/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/public/projects/Winter_2023/Webscraping/link.txt b/public/projects/Winter_2023/Webscraping/link.txt
deleted file mode 100644
index 51ebc07..0000000
--- a/public/projects/Winter_2023/Webscraping/link.txt
+++ /dev/null
@@ -1 +0,0 @@
-https://docs.google.com/document/d/1uVD5nvpA0lg9E8tE9khuEQDlwCwHKgrHGqtvzKe2JoA/
\ No newline at end of file
diff --git a/public/projects/Winter_2023/Wildfire_Spread_Prediction/.gitkeep b/public/projects/Winter_2023/Wildfire_Spread_Prediction/.gitkeep
deleted file mode 100644
index e69de29..0000000