data: Added resume

This commit is contained in:
2026-02-22 18:03:04 +05:30
parent a275fcc2f4
commit bc92745e54
4 changed files with 39 additions and 2 deletions

BIN
public/resume.pdf Normal file

Binary file not shown.

View File

@@ -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() {
}}
/>
<SystemOverviewSection />
<EducationSection />
<div className="grid grid-cols-1 gap-12 md:grid-cols-7">
<div className="md:col-span-5">
<EducationSection />
</div>
<div className="md:col-span-2">
<ResumeSection />
</div>
</div>
<div className="grid grid-cols-1 md:grid-cols-3 gap-12 mt-8">
<ProjectsSection />
<LabNotesSection />

View File

@@ -0,0 +1,29 @@
import { Download } from 'lucide-react';
export function ResumeSection() {
return (
<section className="space-y-6">
<div className="flex items-center justify-between border-b-2 border-dashed border-(--border-main) pb-2">
<h2 className="font-sketch text-2xl text-(--text-main) flex items-center gap-2">
<Download className="w-5 h-5 accent-text" /> resume.pdf
</h2>
</div>
<div className="sketch-border-subtle bg-(--bg-surface) p-6 flex flex-col gap-4">
<p className="text-(--text-muted) text-sm font-mono leading-relaxed">
Grab the latest snapshot of my experience, projects, and research focus.
</p>
<div className="flex flex-wrap items-center gap-3">
<a
href="/resume.pdf"
className="inline-flex items-center gap-2 px-4 py-2 text-xs font-mono sketch-border bg-(--bg-panel) text-(--text-main) hover:text-(--bg-base) hover:bg-(--color-accent) transition-colors"
download
>
<Download className="w-4 h-4" /> Download resume
</a>
<span className="text-(--text-dim) text-xs font-mono">Last updated Feb 2026</span>
</div>
</div>
</section>
);
}

View File

@@ -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' },
];