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