mirror of
https://github.com/soconnor0919/personal-website.git
synced 2025-12-15 08:14:43 -05:00
emojis
This commit is contained in:
@@ -4,7 +4,7 @@ export default function CVPage() {
|
||||
return (
|
||||
<div className="space-y-8">
|
||||
<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">
|
||||
My academic and professional experience in computer science, robotics, and engineering.
|
||||
</p>
|
||||
|
||||
@@ -10,7 +10,7 @@ export default function HomePage() {
|
||||
{/* About Section */}
|
||||
<section className="space-y-6">
|
||||
<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">
|
||||
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
|
||||
@@ -74,7 +74,7 @@ export default function HomePage() {
|
||||
{/* Featured Projects Section */}
|
||||
<section className="space-y-4">
|
||||
<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
|
||||
href="/projects"
|
||||
className="text-sm text-muted-foreground hover:text-primary flex items-center gap-1"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { Card, CardHeader, CardTitle, CardDescription, CardContent } from "~/components/ui/card";
|
||||
import { Badge } from "~/components/ui/badge";
|
||||
import Link from "next/link";
|
||||
import { ArrowUpRight } from "lucide-react";
|
||||
import { ArrowUpRight, Sparkles } from "lucide-react";
|
||||
import { projects } from "~/lib/data";
|
||||
import Image from "next/image";
|
||||
|
||||
@@ -9,7 +9,7 @@ export default function ProjectsPage() {
|
||||
return (
|
||||
<div className="space-y-8">
|
||||
<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">
|
||||
A selection of my academic and professional projects, focusing on robotics,
|
||||
web development, and embedded systems.
|
||||
|
||||
@@ -59,7 +59,7 @@ export default function PublicationsPage() {
|
||||
return (
|
||||
<div className="space-y-8">
|
||||
<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">
|
||||
My research publications in human-robot interaction and robotics.
|
||||
</p>
|
||||
|
||||
@@ -102,7 +102,7 @@ export function parseBibtex(bibtex: string): Publication[] {
|
||||
return {
|
||||
title: entry.fields.title?.replace(/[{}]/g, '') || '',
|
||||
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),
|
||||
doi: entry.fields.doi,
|
||||
url: entry.fields.url,
|
||||
|
||||
@@ -26,7 +26,7 @@ export const projects = [
|
||||
},
|
||||
{
|
||||
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.",
|
||||
tags: ["C++", "Embedded Systems", "Hardware Design"],
|
||||
link: "https://github.com/soconnor0919/national_fa24",
|
||||
|
||||
Reference in New Issue
Block a user