diff --git a/public/resume.pdf b/public/resume.pdf
new file mode 100644
index 0000000..985df0f
Binary files /dev/null and b/public/resume.pdf differ
diff --git a/src/App.tsx b/src/App.tsx
index 606e30a..bca114e 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -8,6 +8,7 @@ import { HeroSection } from './components/HeroSection';
import { LabNotesSection } from './components/LabNotesSection';
import { NavigationBar } from './components/NavigationBar';
import { ProjectsSection } from './components/ProjectsSection';
+import { ResumeSection } from './components/ResumeSection';
import { SystemOverviewSection } from './components/SystemOverviewSection';
export default function App() {
@@ -97,7 +98,14 @@ export default function App() {
}}
/>
-
+
diff --git a/src/components/ResumeSection.tsx b/src/components/ResumeSection.tsx
new file mode 100644
index 0000000..166edaa
--- /dev/null
+++ b/src/components/ResumeSection.tsx
@@ -0,0 +1,29 @@
+import { Download } from 'lucide-react';
+
+export function ResumeSection() {
+ return (
+
+
+
+ resume.pdf
+
+
+
+
+
+ Grab the latest snapshot of my experience, projects, and research focus.
+
+
+
+
+ );
+}
diff --git a/src/data/contentData.tsx b/src/data/contentData.tsx
index 11bfe51..7280c0d 100644
--- a/src/data/contentData.tsx
+++ b/src/data/contentData.tsx
@@ -44,6 +44,6 @@ export const PROJECTS: Project[] = [
export const LAB_NOTES: LabNote[] = [
{ date: '2026-02-14', title: 'GT730 and handling some Nvidia Voodoo Magic' },
- { date: '2026-01-28', title: 'Why I stopped using Nginx and wrote my own router' },
+ { date: '2026-01-28', title: "So, how's that VPS business going?" },
{ date: '2025-12-10', title: 'Injecting dynamic themes via CSS variable mutations' },
];