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

96 lines
3.5 KiB
Plaintext
Raw Normal View History

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>
<!-- For some god forsaken reason this grid-cols doesnt
work?? Hello?? Tailwind??? -->
<div class="grid grid-cols-[30rem_auto] gap-2">
<div class="fler items-center">
<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">
Nombre del proyecto :D
</h1>
<p class="pt-8">
Descripción del proyecto :D (carita feliz)
en 240 palabras o menos
</p>
<div class="pt-8">
<a href="" class="underline">Git repo link</a>
<br>
<a href="" class="underline">https://webpage.araozu.dev/</a>
</div>
<div class="pt-8">
logos
</div>
</div>
</div>
<div class="w-full h-screen flex items-center justify-center p-16">
<img src="/img/projects/thp/01.png" alt="Project image">
</div>
</div>
</div>
</body>
</html>