Skip to content

Commit 0e2a5ac

Browse files
committed
Upgrades people upgrades!
1 parent 16bea8f commit 0e2a5ac

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed
205 KB
Loading

next-js-app/src/app/contact-submissions/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import { useState, useEffect } from "react";
44

5-
const PASSWORD = process.env.SUBMISSIONS_PASSWORD; // Replace with a strong password
5+
const PASSWORD = "SUPER_SECURE_PASSWORD"; // Replace with a strong password
66

77
interface Submission {
88
name: string;

next-js-app/src/app/home/page.tsx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ import njtJamesWearingHardhatConsoleRoom from "../../../public/image-assets/New_
3838
import envolvlyProjectThumbnail from "../../../public/image-assets/projects/Envolvly/thumbnail.png";
3939
import MITJOSProjectThumbnail from "../../../public/image-assets/projects/MIT-JOS/thumbnail.png";
4040
import WormholeProjectThumbnail from "../../../public/image-assets/projects/Wormhole/thumbnail.png";
41+
import StuntCVProjectThumbnail from "../../../public/image-assets/projects/StuntCV/thumbnail.png";
4142

4243
import fileIcon from "../../../public/file.svg";
4344
import globeIcon from "../../../public/globe.svg";
@@ -175,18 +176,19 @@ const projects: Project[] = [
175176
technologies: "Python, OpenCV, MediaPipe, Tkinter, NumPy",
176177
period: "July 2025 - Present",
177178
description:
178-
"A desktop application designed for detailed analysis of acrobatic performances.",
179+
"A desktop application designed for analysis of stunt performances. Tracks 70 points of accuracy per frame and performs data analysis on stunts performed.",
179180
longDescription:
180181
"A desktop application designed for detailed analysis of acrobatic performances, such as cheer stunts and partner acrobatics, using advanced computer vision.",
181-
image: windowIcon,
182+
image: StuntCVProjectThumbnail,
182183
},
183184
{
184185
name: "Wormhole",
185-
technologies: "Next.js, TypeScript, Tailwind CSS, Vercel",
186+
technologies: "Next.js, TypeScript, Tailwind CSS, Vercel, Generative AI",
186187
period: "August 2025",
187-
description: "A secure file transfer application.",
188+
description:
189+
"An AI-powered portfolio experience that dynamically generates pages for a unique visit every time.",
188190
longDescription:
189-
"A secure file transfer application that allows users to send files of any size with end-to-end encryption.",
191+
"The Wormhole is an AI-powered portfolio experience that dynamically generates pages using a Large Language Model (LLM). The LLM is provided with information about my professional background and generates unique content for each visitor. This project showcases my skills in full-stack development, API design, and generative AI.",
190192
image: WormholeProjectThumbnail,
191193
},
192194
{

0 commit comments

Comments
 (0)