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
+11 -12
View File
@@ -7,9 +7,13 @@ import { Sidebar } from "~/components/Sidebar";
import { BreadcrumbWrapper } from "~/components/BreadcrumbWrapper";
import { BreadcrumbProvider } from "~/context/BreadcrumbContext";
import { inter, playfair } from "~/lib/fonts";
import { playfair } from "~/lib/fonts";
import { description, name } from "~/lib/data";
import "~/styles/globals.css";
import { Inter } from "next/font/google";
import { cn } from "~/lib/utils";
const inter = Inter({subsets:['latin'],variable:'--font-sans'});
export const metadata: Metadata = {
title: `${name[0]?.first} ${name[0]?.last}`,
@@ -21,18 +25,13 @@ export default function RootLayout({ children }: React.PropsWithChildren) {
return (
<html
lang="en"
className={`${inter.variable} ${playfair.variable}`}
className={cn(inter.variable, playfair.variable, "font-sans", inter.variable)}
suppressHydrationWarning
>
<body
className="relative flex min-h-screen flex-col bg-background font-sans text-foreground"
className="flex min-h-screen flex-col bg-background font-sans text-foreground"
suppressHydrationWarning
>
{/* Background Elements */}
<div className="pointer-events-none fixed inset-0 -z-10 flex items-center justify-center overflow-hidden">
<div className="absolute inset-0 bg-[linear-gradient(to_right,#80808012_1px,transparent_1px),linear-gradient(to_bottom,#80808012_1px,transparent_1px)] bg-[size:24px_24px] [mask-image:radial-gradient(ellipse_60%_50%_at_50%_50%,#000_70%,transparent_100%)]"></div>
<div className="animate-blob h-[800px] w-[800px] rounded-full bg-neutral-400/40 blur-3xl dark:bg-neutral-500/30"></div>
</div>
{env.NEXT_PUBLIC_UMAMI_WEBSITE_ID && (
<Script
@@ -47,11 +46,11 @@ export default function RootLayout({ children }: React.PropsWithChildren) {
<BreadcrumbProvider>
<Navigation />
<div className="flex flex-1 flex-col pt-24 lg:flex-row">
<div className="flex flex-1 flex-col pt-16 lg:flex-row">
<Sidebar />
<div className="min-w-0 flex-1 lg:pl-96">
<div className="mx-auto max-w-screen-xl px-6 sm:px-8 lg:pl-0 lg:pr-8">
<main className="pb-8 pt-4">
<div className="min-w-0 flex-1 lg:pl-80">
<div className="mx-auto max-w-screen-xl px-4 sm:px-6 lg:pl-0 lg:pr-6">
<main className="p-4 pb-6 pt-6 sm:p-6 sm:pb-8 sm:pt-8">
<BreadcrumbWrapper />
{children}
</main>
+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>