Semantic HTML Outline for Projects Page

This commit is contained in:
Caleb Braaten 2024-01-31 05:15:57 -08:00
parent 5142d1968c
commit 5ac952787f

View File

@ -1,8 +1,18 @@
export function Projects(){
return (
<div>
<h1>Projects</h1>
<p>Maybe pull from Gitea at some point</p>
<div class="projects">
<div>
<img src="https://via.placeholder.com/150" />
<h2>This Site</h2>
<p>Project 1 description</p>
<a href="/project/1">Git Repo</a>
</div>
<div>
<img src="https://via.placeholder.com/150" />
<h2>Home Server</h2>
<p>Project 1 description</p>
<a href="/project/1">Git Repo</a>
</div>
</div>
)
}