Add a short projects list

This commit is contained in:
Zeph Levy 2026-02-17 21:32:19 +01:00
parent 3be4009b52
commit 7812fb96e6

View file

@ -4,22 +4,33 @@
<svelte:head>
<title>About</title>
<meta name="description" content="About this app" />
<meta name="projects" content="My projects" />
</svelte:head>
<div class="text-column">
<h1>About this app</h1>
<p>
This is a <a href="https://svelte.dev/docs/kit">SvelteKit</a> app. You can make your own by typing
the following into your command line and following the prompts:
</p>
<pre>npx sv create</pre>
<p>
The page you're looking at is purely static HTML, with no client-side interactivity needed.
Because of that, we don't need to load any JavaScript. Try viewing the page's source, or opening
the devtools network panel and reloading.
</p>
<h1>Some of the stuff I've done:</h1>
<ul>
<li class="project"><div>
<a href="https://git.zephlevy.com/zephlevy/City-portal">City Portal</a>
<p>An extensible and adaptable data aggregation platform for what I call "local" data:
data that is only useful for a geographical community.</p>
</div></li>
<li class="project"><div>
<a href="https://github.com/ZephLevy/Safe-return">Safe Return</a>
<p>A "dead man's switch" of sorts, designed to automatically alert authorities or family
members of the user in case they are kidnapped or otherwise incapacitated.</p>
</div></li>
</ul>
</div>
<style>
.project a {
font-size: 1.4rem;
font-weight: 600;
}
.project p {
margin-top: 6px;
}
</style>