chore: Update page titles and fix styling in publications and projects pages

This commit is contained in:
2024-06-05 11:11:51 +02:00
parent 1102f366e6
commit 8abd1ff38a
4 changed files with 96 additions and 49 deletions

View File

@@ -1,9 +1,10 @@
import { Icon } from "@/components/Icon";
import { ProjectCard } from "@/components/ProjectCard";
export default async function Page() {
return (
<div className="flex flex-col items-center">
<h1 className="text-4xl my-5">Projects (2)</h1>
<h1 className="text-4xl my-5">Projects</h1>
<div
className="my-5 rounded-xl"
style={{
@@ -11,38 +12,49 @@ export default async function Page() {
}}
>
<h2 className="text-2xl font-bold">Vash Software</h2>
<p>
Vash was originally a video game clan, transformed by Stan to be a
global{" "}
</p>
<p>A global, asynchronic software company.</p>
<div>
<h3 className="text-xl font-semibold">Vash Esports (Pre-Alpha)</h3>
<p>The best way to play games competitively.</p>
<div>
<h4 className="text-l font-semibold">Web App</h4>
</div>
<div>
<h4 className="text-l font-semibold">iOS App</h4>
</div>
<div>
<h4 className="text-l font-semibold">Vash Gaming Network</h4>
</div>
<div>
<h4 className="text-l font-semibold">osu! Match Streamer</h4>
</div>
</div>
</div>
<div className="my-5">
<h2 className="text-2xl my-5">Personal Projects (2)</h2>
<h2 className="text-2xl my-5">Personal Projects (3)</h2>
<div className="grid grid-cols-2 gap-4">
<div className="flex">
<div>
<Icon d="M12 2A10 10 0 0 0 2 12c0 4.42 2.87 8.17 6.84 9.5c.5.08.66-.23.66-.5v-1.69c-2.77.6-3.36-1.34-3.36-1.34c-.46-1.16-1.11-1.47-1.11-1.47c-.91-.62.07-.6.07-.6c1 .07 1.53 1.03 1.53 1.03c.87 1.52 2.34 1.07 2.91.83c.09-.65.35-1.09.63-1.34c-2.22-.25-4.55-1.11-4.55-4.92c0-1.11.38-2 1.03-2.71c-.1-.25-.45-1.29.1-2.64c0 0 .84-.27 2.75 1.02c.79-.22 1.65-.33 2.5-.33s1.71.11 2.5.33c1.91-1.29 2.75-1.02 2.75-1.02c.55 1.35.2 2.39.1 2.64c.65.71 1.03 1.6 1.03 2.71c0 3.82-2.34 4.66-4.57 4.91c.36.31.69.92.69 1.85V21c0 .27.16.59.67.5C19.14 20.16 22 16.42 22 12A10 10 0 0 0 12 2" />
</div>
<div>
<h3 className="text-xl font-semibold">This website</h3>
<p>
Despite being a simple, mostly static website, there's a lot
more behind the scenes.
</p>
</div>
</div>
<div className="flex">
<div>
<Icon d="M12 2A10 10 0 0 0 2 12c0 4.42 2.87 8.17 6.84 9.5c.5.08.66-.23.66-.5v-1.69c-2.77.6-3.36-1.34-3.36-1.34c-.46-1.16-1.11-1.47-1.11-1.47c-.91-.62.07-.6.07-.6c1 .07 1.53 1.03 1.53 1.03c.87 1.52 2.34 1.07 2.91.83c.09-.65.35-1.09.63-1.34c-2.22-.25-4.55-1.11-4.55-4.92c0-1.11.38-2 1.03-2.71c-.1-.25-.45-1.29.1-2.64c0 0 .84-.27 2.75 1.02c.79-.22 1.65-.33 2.5-.33s1.71.11 2.5.33c1.91-1.29 2.75-1.02 2.75-1.02c.55 1.35.2 2.39.1 2.64c.65.71 1.03 1.6 1.03 2.71c0 3.82-2.34 4.66-4.57 4.91c.36.31.69.92.69 1.85V21c0 .27.16.59.67.5C19.14 20.16 22 16.42 22 12A10 10 0 0 0 12 2" />
</div>
<div>
<h3 className="text-xl font-semibold">Spotify osu! Map Finder</h3>
<p>
A quick tool to find osu! maps from Spotify songs or playlists.
</p>
</div>
</div>
<ProjectCard
title="This Website"
description="Despite being a simple, mostly static website, there's a lot
more behind the scenes."
link="https://github.com/stanrunge/personal-website"
/>
<ProjectCard
title="Spotify osu! Map Finder"
description="A tool to find osu! maps based on Spotify playlists."
link="https://github.com/stanrunge/spotify-map-finder"
/>
<ProjectCard
title="Livvie MC Tournament Plugin"
description="A Minecraft plugin to run tournaments on a server."
link="https://github.com/stanrunge/livvie-mc-tournament-plugin"
/>
</div>
</div>
</div>