mirror of
https://github.com/youwen5/site.git
synced 2024-11-24 17:33:51 -08:00
33 lines
1.1 KiB
Text
33 lines
1.1 KiB
Text
<script>
|
|
import * as Card from '$lib/components/ui/card'
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>Portfolio | Youwen Wu</title>
|
|
<meta name="description" content="My personal website and blog." />
|
|
<meta name="author" content="Youwen Wu" />
|
|
</svelte:head>
|
|
|
|
<main class="container mx-auto max-w-5xl my-20">
|
|
<h1 class="font-serif text-5xl font-medium tracking-tight">Portfolio</h1>
|
|
<p class="text-xl mt-4">
|
|
Here's some of the stuff I've worked on which I think is notable or interesting enough to write
|
|
about.
|
|
</p>
|
|
<Card.Root class="p-6">
|
|
<Card.Header>
|
|
<Card.Title class="text-4xl font-serif tracking-normal font-medium">Jankboard</Card.Title>
|
|
</Card.Header>
|
|
<Card.Content class="grid grid-cols-3">
|
|
<div class="col-span-2">
|
|
<p>
|
|
Jankboard is a fully custom control dashboard for Team 1280's robot competing in the 2024
|
|
season of the FIRST Robotics Competition.
|
|
</p>
|
|
</div>
|
|
<div class="flex justify-end col-span-1">
|
|
<img src="/assets/portfolio/images/team-1280-logo.png" alt="team 1280 logo" />
|
|
</div>
|
|
</Card.Content>
|
|
</Card.Root>
|
|
</main>
|