Create layout for side projects
Before Width: | Height: | Size: 287 KiB |
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 782 KiB After Width: | Height: | Size: 782 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 377 B After Width: | Height: | Size: 377 B |
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 8.9 KiB After Width: | Height: | Size: 8.9 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 8.0 KiB After Width: | Height: | Size: 8.0 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 831 B After Width: | Height: | Size: 831 B |
BIN
public/img/projects/thp/01.png
Normal file
After Width: | Height: | Size: 165 KiB |
Before Width: | Height: | Size: 29 KiB |
@ -6,7 +6,7 @@ const { lang, icon, size, alpineOnClick } = Astro.props;
|
||||
<img
|
||||
@click={alpineOnClick}
|
||||
class={"inline-block " + (size? size: "h-8") + " px-1 my-1"}
|
||||
src={`/img/${icon}-logo.svg`}
|
||||
src={`/img/logos/${icon}-logo.svg`}
|
||||
alt={`${lang} logo`}
|
||||
title={`${lang} logo`}
|
||||
/>
|
||||
|
95
src/pages/side-projects.astro
Normal file
@ -0,0 +1,95 @@
|
||||
<!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>
|