Update content for graduation, BU master's, and thesis

- Graduate from Bucknell May 2026, starting MS CompE at Boston University
- Add honors thesis to publications with abstract and PDF
- Update Dean's List to 7 semesters (Spring 2026)
- Fix GPA display: Engineering GPA 3.92 / Overall 3.67
- Fix breadcrumb hidden under navbar (pt-16 on content wrapper)
- Fix Research Interests card extra top padding
- Update research interests blurb to grad-school voice
- Save dev server config to .claude/launch.json

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-11 01:18:39 -04:00
parent 42e2898223
commit d5dba3cc09
8 changed files with 149 additions and 81 deletions
+47 -48
View File
@@ -22,7 +22,7 @@ import {
CardHeader,
CardTitle,
} from "~/components/ui/card";
import { awards, education, experiences, researchInterests } from "~/lib/data";
import { awards, educationList, experiences, researchInterests } from "~/lib/data";
export default function HomePage() {
const researchExperience = experiences.filter(
@@ -47,9 +47,10 @@ export default function HomePage() {
Sean O&apos;Connor
</h1>
<p className="animate-fade-in-up-delay-2 text-xl text-muted-foreground">
Computer Science and Engineering student passionate about
human-robot interaction and developing technologies that make robots
better collaborators with humans.
Computer Science and Engineering graduate pursuing a Master&apos;s
at Boston University. Research interests in human-robot interaction
and developing technologies that make robots better collaborators
with humans.
</p>
<div className="animate-fade-in-up-delay-3 flex flex-wrap gap-4 text-sm text-muted-foreground">
<div className="flex items-center gap-1">
@@ -58,23 +59,13 @@ export default function HomePage() {
sean@soconnor.dev
</a>
</div>
<div className="flex items-center gap-1">
<Mail className="h-4 w-4" />
<a
href="mailto:sso005@bucknell.edu"
className="hover:text-primary"
>
sso005@bucknell.edu
</a>
</div>
<div className="flex items-center gap-1">
<GraduationCap className="h-4 w-4" />
Bucknell University
Boston University
</div>
<div className="flex items-center gap-1">
<MapPin className="h-4 w-4" />
Lewisburg, PA
Boston, MA
</div>
</div>
<div className="animate-fade-in-up-delay-4 flex gap-3">
@@ -99,7 +90,7 @@ export default function HomePage() {
<h2 className="text-2xl font-bold">Research Interests</h2>
<div className="animate-fade-in-up-delay-1">
<Card className="card-hover">
<CardContent className="pt-6">
<CardContent>
<p className="leading-relaxed text-muted-foreground">
{researchInterests}
</p>
@@ -111,37 +102,45 @@ export default function HomePage() {
{/* Education */}
<section className="animate-fade-in-up space-y-6">
<h2 className="text-2xl font-bold">Education</h2>
<div className="animate-fade-in-up-delay-1">
<Card className="card-hover">
<CardHeader className="pb-3">
<div className="flex items-center justify-between">
<div>
<CardTitle className="mb-1">
{education.institution}
</CardTitle>
<CardDescription>{education.location}</CardDescription>
</div>
<School className="h-5 w-5 text-muted-foreground" />
</div>
</CardHeader>
<CardContent className="space-y-3 pt-0">
<div>
<p className="font-medium">{education.degree}</p>
<p className="text-sm text-muted-foreground">
Expected {education.expectedGraduation}
</p>
</div>
<div className="flex flex-wrap gap-2">
<Badge variant="secondary">
Engineering GPA: {education.gpa}
</Badge>
<Badge variant="outline">
Dean&apos;s List: {education.deansListSemesters.length}{" "}
semesters
</Badge>
</div>
</CardContent>
</Card>
<div className="space-y-4">
{educationList.map((edu, index) => (
<div key={index} className={`animate-fade-in-up-delay-${index + 1}`}>
<Card className="card-hover">
<CardHeader className="pb-3">
<div className="flex items-center justify-between">
<div>
<CardTitle className="mb-1">{edu.institution}</CardTitle>
<CardDescription>{edu.location}</CardDescription>
</div>
<School className="h-5 w-5 text-muted-foreground" />
</div>
</CardHeader>
<CardContent className="space-y-3 pt-0">
<div>
<p className="font-medium">{edu.degree}</p>
<p className="text-sm text-muted-foreground">
{edu.graduated ? "" : "Expected "}{edu.expectedGraduation}
</p>
</div>
<div className="flex flex-wrap gap-2">
{edu.engineeringGpa ? (
<>
<Badge variant="secondary">Eng. GPA: {edu.engineeringGpa}</Badge>
<Badge variant="outline">Overall GPA: {edu.gpa}</Badge>
</>
) : (
<Badge variant="secondary">GPA: {edu.gpa}</Badge>
)}
{edu.deansListSemesters.length > 0 && (
<Badge variant="outline">
Dean&apos;s List: {edu.deansListSemesters.length} semesters
</Badge>
)}
</div>
</CardContent>
</Card>
</div>
))}
</div>
</section>