araozu.dev/src/pages/side-projects/index.astro

85 lines
3.4 KiB
Plaintext
Raw Normal View History

2024-07-26 23:21:13 +00:00
---
import GithubIcon from "../../components/Sideprojects/GithubIcon.astro";
import GlobeIcon from "../../components/Sideprojects/GlobeIcon.astro";
2024-08-15 16:24:02 +00:00
import NavigationLayout from "../../layouts/NavigationLayout.astro";
2024-07-26 23:21:13 +00:00
---
2024-07-26 22:46:39 +00:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<link rel="stylesheet" href="/global.css" />
<link rel="stylesheet" href="/blog.css" />
<title>Side projects - Fernando Araoz</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
type="text/css"
href="https://unpkg.com/@phosphor-icons/web@2.1.1/src/regular/style.css"
/>
<script src="//unpkg.com/alpinejs" is:inline defer></script>
</head>
<body>
2024-08-15 16:24:02 +00:00
<NavigationLayout>
2024-07-26 22:46:39 +00:00
<div class="grid grid-cols-[30rem_auto] gap-2">
2024-07-26 23:21:13 +00:00
<div class="flex items-center">
2024-08-15 16:24:02 +00:00
<div
class="bg-c-bg-2 my-4 rounded p-4 dark:shadow-black shadow"
>
<h1
class="font-display font-semibold text-xl text-center"
>
2024-07-26 23:21:13 +00:00
Typed Hyperscript Processor (webpage)
2024-07-26 22:46:39 +00:00
</h1>
2024-07-26 23:21:13 +00:00
<p class="pt-8 text-sm">
This is a static webpage that contains documentation
for my other project, the THP compiler.
2024-08-15 16:24:02 +00:00
<br />
<br />
It is written with Astro and Markdown, highlights the
syntax in the code snippets using said compiler, and
has some interactive code snippets.
2024-07-26 22:46:39 +00:00
</p>
<div class="pt-8">
2024-07-26 23:21:13 +00:00
<GithubIcon color="var(--c-on-bg)" />
2024-08-15 16:24:02 +00:00
<a
href="https://git.araozu.dev/fernando/araozu.dev"
class="underline">Source code</a
>
<br />
2024-07-26 23:21:13 +00:00
<GlobeIcon color="var(--c-on-bg)" />
2024-08-15 16:24:02 +00:00
<a
href="https://thp.araozu.dev/"
target="_blank"
class="underline">https://thp.araozu.dev/</a
>
2024-07-26 22:46:39 +00:00
</div>
2024-08-15 16:24:02 +00:00
<div class="pt-8">logos</div>
2024-07-26 22:46:39 +00:00
</div>
</div>
2024-08-15 16:24:02 +00:00
<div
class="w-full h-screen flex items-center justify-center p-16"
>
2024-07-26 23:21:13 +00:00
<img
class="inline-block shadow-sm dark:shadow-black rounded"
src="/img/projects/thp/01.png"
alt="Project image"
/>
2024-07-26 22:46:39 +00:00
</div>
</div>
2024-08-15 16:24:02 +00:00
</NavigationLayout>
2024-07-26 22:46:39 +00:00
</body>
</html>