diff --git a/apps/blade/public/profile.jpg b/apps/blade/public/profile.jpg new file mode 100644 index 00000000..3226f652 Binary files /dev/null and b/apps/blade/public/profile.jpg differ diff --git a/apps/blade/public/resume.pdf b/apps/blade/public/resume.pdf new file mode 100644 index 00000000..a1d5cac4 Binary files /dev/null and b/apps/blade/public/resume.pdf differ diff --git a/apps/blade/src/app/ericgeorge/page.tsx b/apps/blade/src/app/ericgeorge/page.tsx new file mode 100644 index 00000000..24ba3d5a --- /dev/null +++ b/apps/blade/src/app/ericgeorge/page.tsx @@ -0,0 +1,388 @@ +"use client"; + +import React, { useState, useEffect } from "react"; +import { GeistMono } from "geist/font/mono"; +import { cn } from "@forge/ui"; +import { FaLinkedin } from "react-icons/fa"; +import Link from "next/link"; + +const PIPBOY_GREEN = "#1aff80"; + +const Page = () => { + const [activeTab, setActiveTab] = useState("INTRO"); + const [time, setTime] = useState(new Date()); + + useEffect(() => { + const timer = setInterval(() => setTime(new Date()), 1000); + return () => clearInterval(timer); + }, []); + + const tabs = ["INTRO", "PROJECTS", "CONTACT"]; + + return ( +
+ {/* Image Scanline Overlay */}
+
+ {/* Vignette on image */}
+
+
+
+
+
+
+ A really fun game that we designed at Swamphacks to help people learn ASL. It was basically a combo of Guitar Hero and DDR but with ASL. My favorite part about this project was that it ended up being a pretty solid game at the end of it. We had tons of people swarm our table to try it out! +
+2nd Place @ Swamphacks
+Best Game Design @ Swamphacks
+MobileNetV2 • MediaPipe • Real-time AI
+
+
+ Emergent was a cool project that me and my friends built at Knighthacks. Its essentially a crisis-management simulation software that aims to streamline and improve the way that organizations simulate disasters. It was a really engaging problem to delve into and also very fun to build. +
+1st Place @ Knighthacks
+2nd Place in Google ADK Challenge @ Knighthacks
+Google ADK • NextJS • ElevenLabs
+
+