This commit is contained in:
2024-10-28 19:40:45 -07:00
parent efbc68679a
commit ca0e2c1a94
6 changed files with 8 additions and 8 deletions

View File

@@ -4,7 +4,7 @@ export default function CVPage() {
return ( return (
<div className="space-y-8"> <div className="space-y-8">
<section className="prose prose-zinc dark:prose-invert max-w-none"> <section className="prose prose-zinc dark:prose-invert max-w-none">
<h1 className="text-2xl font-bold">Curriculum Vitae</h1> <h1 className="text-2xl font-bold">Curriculum Vitae 📄</h1>
<p className="text-lg text-muted-foreground"> <p className="text-lg text-muted-foreground">
My academic and professional experience in computer science, robotics, and engineering. My academic and professional experience in computer science, robotics, and engineering.
</p> </p>

View File

@@ -10,7 +10,7 @@ export default function HomePage() {
{/* About Section */} {/* About Section */}
<section className="space-y-6"> <section className="space-y-6">
<div> <div>
<h1 className="text-2xl font-bold">Hi! I'm Sean.</h1> <h1 className="text-2xl font-bold">Hi! I'm Sean. 👋</h1>
<p className="text-lg text-muted-foreground mt-2"> <p className="text-lg text-muted-foreground mt-2">
I am a Computer Science and Engineering student at Bucknell University, passionate about robotics, I am a Computer Science and Engineering student at Bucknell University, passionate about robotics,
software development, and human-computer interaction. With a strong foundation in both academic software development, and human-computer interaction. With a strong foundation in both academic
@@ -74,7 +74,7 @@ export default function HomePage() {
{/* Featured Projects Section */} {/* Featured Projects Section */}
<section className="space-y-4"> <section className="space-y-4">
<div className="flex items-center justify-between"> <div className="flex items-center justify-between">
<h2 className="text-2xl font-bold">Featured Projects</h2> <h2 className="text-2xl font-bold">Featured Projects 🌟</h2>
<Link <Link
href="/projects" href="/projects"
className="text-sm text-muted-foreground hover:text-primary flex items-center gap-1" className="text-sm text-muted-foreground hover:text-primary flex items-center gap-1"

View File

@@ -1,7 +1,7 @@
import { Card, CardHeader, CardTitle, CardDescription, CardContent } from "~/components/ui/card"; import { Card, CardHeader, CardTitle, CardDescription, CardContent } from "~/components/ui/card";
import { Badge } from "~/components/ui/badge"; import { Badge } from "~/components/ui/badge";
import Link from "next/link"; import Link from "next/link";
import { ArrowUpRight } from "lucide-react"; import { ArrowUpRight, Sparkles } from "lucide-react";
import { projects } from "~/lib/data"; import { projects } from "~/lib/data";
import Image from "next/image"; import Image from "next/image";
@@ -9,7 +9,7 @@ export default function ProjectsPage() {
return ( return (
<div className="space-y-8"> <div className="space-y-8">
<section className="prose prose-zinc dark:prose-invert max-w-none"> <section className="prose prose-zinc dark:prose-invert max-w-none">
<h1 className="text-2xl font-bold">Featured Projects</h1> <h1 className="text-2xl font-bold">Featured Projects 🌟</h1>
<p className="text-lg text-muted-foreground"> <p className="text-lg text-muted-foreground">
A selection of my academic and professional projects, focusing on robotics, A selection of my academic and professional projects, focusing on robotics,
web development, and embedded systems. web development, and embedded systems.

View File

@@ -59,7 +59,7 @@ export default function PublicationsPage() {
return ( return (
<div className="space-y-8"> <div className="space-y-8">
<section className="prose prose-zinc dark:prose-invert max-w-none"> <section className="prose prose-zinc dark:prose-invert max-w-none">
<h1 className="text-2xl font-bold">Publications</h1> <h1 className="text-2xl font-bold">Publications 📚</h1>
<p className="text-lg text-muted-foreground"> <p className="text-lg text-muted-foreground">
My research publications in human-robot interaction and robotics. My research publications in human-robot interaction and robotics.
</p> </p>

View File

@@ -102,7 +102,7 @@ export function parseBibtex(bibtex: string): Publication[] {
return { return {
title: entry.fields.title?.replace(/[{}]/g, '') || '', title: entry.fields.title?.replace(/[{}]/g, '') || '',
authors: parseAuthors(entry.fields.author || ''), authors: parseAuthors(entry.fields.author || ''),
venue: entry.fields.booktitle || entry.fields.journal || '', venue: entry.fields.booktitle || entry.fields.journal || entry.fields.organization || entry.fields.school || '',
year: parseInt(entry.fields.year || '0', 10), year: parseInt(entry.fields.year || '0', 10),
doi: entry.fields.doi, doi: entry.fields.doi,
url: entry.fields.url, url: entry.fields.url,

View File

@@ -26,7 +26,7 @@ export const projects = [
}, },
{ {
title: "Chem-E-Car Control System", title: "Chem-E-Car Control System",
description: "Custom microcontroller-based control system for hydrogen fuel cell regulation.", description: "Custom microcontroller-based control system for hydrogen fuel cell regulation and reaction monitoring.",
longDescription: "Pioneered the team's first custom hardware solution, implementing a finite state machine architecture that integrates spectrometer readings, relay control, and LED feedback for real-time reaction monitoring.", longDescription: "Pioneered the team's first custom hardware solution, implementing a finite state machine architecture that integrates spectrometer readings, relay control, and LED feedback for real-time reaction monitoring.",
tags: ["C++", "Embedded Systems", "Hardware Design"], tags: ["C++", "Embedded Systems", "Hardware Design"],
link: "https://github.com/soconnor0919/national_fa24", link: "https://github.com/soconnor0919/national_fa24",