diff --git a/apps/blade/public/Daniel_s_Resume.pdf b/apps/blade/public/Daniel_s_Resume.pdf new file mode 100644 index 00000000..cf17859b Binary files /dev/null and b/apps/blade/public/Daniel_s_Resume.pdf differ diff --git a/apps/blade/src/app/daniel-schevis/layout.tsx b/apps/blade/src/app/daniel-schevis/layout.tsx new file mode 100644 index 00000000..f4871360 --- /dev/null +++ b/apps/blade/src/app/daniel-schevis/layout.tsx @@ -0,0 +1,36 @@ +export default function DanielSchevisLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( +
+ {/* Gotham-style header with bat signal effect */} +
+
+
+

+ DANIEL SCHEVIS +

+

+ // DEVELOPER • GOTHAM CITY +

+
+
+ + {/* Main content area */} +
{children}
+ + {/* Footer */} +
+
+
+

+ Protecting the campus, one commit at a time +

+
+
+
+
+ ); +} diff --git a/apps/blade/src/app/daniel-schevis/page.tsx b/apps/blade/src/app/daniel-schevis/page.tsx new file mode 100644 index 00000000..562119f6 --- /dev/null +++ b/apps/blade/src/app/daniel-schevis/page.tsx @@ -0,0 +1,121 @@ +export default function DanielSchevisPortfolio() { + return ( +
+ {/* About Me Section */} +
+

+ + About Me +

+
+

+ Systems Running... +

+

+ Hello User +

+

+ Welcome to Daniel Schevis's Developer Application. Here you will find everything you need to know about Daniel in the context of Web Development. I hope you find what you are looking for while you are here :) +

+
+ + {/* Social Links */} +
+ + + + +
+ + + + + +
+ + {/* Skills/Tech Stack */} +
+

+ + Arsenal +

+
+ {[ + { name: "StateFarm Game", url: "https://github.com/elizabethprettosotelo/shellhacks25" }, + { name: "Pallit", url: "https://github.com/elizabethprettosotelo/pallit" }, + { name: "HeisenLearn", url: "https://github.com/AntonioHollerman/WarEagles" }, + { name: "Last Meal Protocol Club", url: "https://github.com/powdermilkjuno/habit-tracker" }, + { name: "WizzOff", url: "https://github.com/KahlenHernani/WizzOff" }, + ].map((project) => ( + + + {project.name} + +
+ + ))} +
+
+ + {/* Mission Statement */} +
+
+
+
+

+ The Mission +

+

+ "Get into the Development Team on KnightHacks at University of Central Florida" +

+
+
+
+
+ ); +} \ No newline at end of file