diff --git a/apps/blade/public/Resume_6.pdf b/apps/blade/public/Resume_6.pdf new file mode 100644 index 00000000..1b303869 Binary files /dev/null and b/apps/blade/public/Resume_6.pdf differ diff --git a/apps/blade/src/app/gabriel/page.tsx b/apps/blade/src/app/gabriel/page.tsx new file mode 100644 index 00000000..5b1ff5e3 --- /dev/null +++ b/apps/blade/src/app/gabriel/page.tsx @@ -0,0 +1,126 @@ +const links = [ + { + label: "Resume", + href: "/Gabriel-Barreto-Otero-Resume.pdf", + }, + { + label: "GitHub", + href: "https://github.com/Luxx12", + }, + { + label: "LinkedIn", + href: "https://www.linkedin.com/in/gabriel-b-otero/", + }, +]; + +const projects = [ + { + name: "Kinexis", + award: "Best App – KnightHacks VIII", + description: + "Full-stack computer vision web app that helps physical therapists assess patient range of motion using real-time pose detection. Reduces assessment time from 15-20 minutes to under 5 minutes. Features include live webcam tracking with MediaPipe, SQLite database for patient data, and automatic generation of APTA-compliant PDF medical reports.", + tech: ["Python", "Flask", "OpenCV", "MediaPipe", "SQLite"], + href: "https://github.com/Luxx12", + }, + { + name: "InfoScope", + award: "Built at ShellHacks", + description: + "Chrome extension that extracts article content and provides AI-powered summaries and Q&A functionality using Google's Gemini API. Built with vanilla JavaScript to keep it lightweight and fast.", + tech: ["JavaScript", "Chrome APIs", "Gemini API"], + href: "https://github.com/Luxx12", + }, + { + name: "Ping", + description: + "Simple TCP chat app built with C++ and Qt. Allows two users to connect and message each other in real-time using the Asio networking library.", + tech: ["C++", "Qt", "Asio"], + href: "https://github.com/Luxx12", + }, +]; + +export default function GabrielPage() { + return ( +
+ +
+ +
+

Gabriel Barreto Otero

+ +
+

+ CS student at UCF. I've been competing in hackathons across various colleges since high school. + I build full-stack apps, work on game development projects, and taught game development during high school. + I like building stuff and solving problems. +

+
+ +
+ {links.map((l) => ( + + {l.label} + + ))} +
+
+ +
+

Projects

+ +
+ {projects.map((p) => ( +
+
+ + {p.name} + + {p.award && ( + + {p.award} + + )} +
+

{p.description}

+
+ {p.tech.map((t) => ( + + {t} + + ))} +
+
+ ))} +
+
+ +
+ barretgaby12@gmail.com +
+
+
+ ); +}