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

110 lines
4.3 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-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>
<style>
html {
font-size: 18px;
}
</style>
</head>
<body>
<div class="grid grid-cols-[4rem_auto]">
<div class="h-screen">
<nav
class="fixed top-0 left-0 bg-black text-white rotate-[-90deg] font-display w-[100vh] translate-y-[100vh] px-8 py-2"
style="transform-origin: 0% 0%;"
>
<a
class="font-semibold inline-block text-2xl hover:underline"
href="/"
>
Fernando Araoz
</a>
<a
class="ml-6 inline-block underline"
href="/side-projects"
>
Side projects
</a>
<a
class="ml-6 inline-block hover:underline"
href="/blog/en"
>
Eng Blog
</a>
<a
class="ml-6 inline-block hover:underline"
href="/blog/es"
>
Es Blog
</a>
</nav>
</div>
<div class="grid grid-cols-[30rem_auto] gap-2">
2024-07-26 23:21:13 +00:00
<div class="flex items-center">
2024-07-26 22:46:39 +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.
<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)" />
<a href="https://git.araozu.dev/fernando/araozu.dev" class="underline">Source code</a>
2024-07-26 22:46:39 +00:00
<br>
2024-07-26 23:21:13 +00:00
<GlobeIcon color="var(--c-on-bg)" />
<a href="https://thp.araozu.dev/" target="_blank" class="underline">https://thp.araozu.dev/</a>
2024-07-26 22:46:39 +00:00
</div>
<div class="pt-8">
logos
</div>
</div>
</div>
<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>
</div>
</body>
</html>