💄 emojis everywhere

Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
This commit is contained in:
Sindre Kjelsrud 2024-03-17 15:52:32 +01:00
parent 583f723318
commit cb7edef515
Signed by untrusted user who does not match committer: sidski
GPG key ID: D2BBDF3EDE6BA9A6
8 changed files with 26 additions and 14 deletions

View file

@ -1,5 +1,5 @@
--- ---
title: "Connect" title: "🌐 Connect"
description: "" description: ""
layout: "../layouts/Layout.astro" layout: "../layouts/Layout.astro"
--- ---

View file

@ -1,5 +1,5 @@
--- ---
title: 'gallery: cairn collection' title: '📸 gallery: cairn collection'
description: '' description: ''
layout: "../../layouts/Gallery.astro" layout: "../../layouts/Gallery.astro"
--- ---

View file

@ -1,5 +1,5 @@
--- ---
title: 'gallery' title: '📸 gallery'
description: '' description: ''
layout: "../../layouts/Layout.astro" layout: "../../layouts/Layout.astro"
--- ---

View file

@ -9,8 +9,8 @@ const valenciaImages = gallery.valencia.map(image => ({
--- ---
<SectionContainer> <SectionContainer>
<main class="flex flex-col gap-6 py-8"> <main class="flex flex-col gap-6 py-4">
<h1 class="text-4xl font-bold">gallery: valencia</h1> <h1 class="text-3xl font-bold">📸 gallery: valencia</h1>
<div class="grid grid-cols-3 gap-4"> <div class="grid grid-cols-3 gap-4">
{ {
valenciaImages.map(image => ( valenciaImages.map(image => (

View file

@ -16,12 +16,12 @@ import HeaderLink from '../components/HeaderLink.astro';
</div> </div>
<div> <div>
<h1 class="text-xl font-semibold">pages</h1> <h1 class="text-xl font-semibold">pages</h1>
<ul class="flex flex-col blog"> <ul class="flex flex-col index">
<li><HeaderLink href="/about">whoami</HeaderLink>~ sid, i am</li> <li><HeaderLink href="/about">whoami</HeaderLink>~ sid, i am</li>
<li><HeaderLink href="/blog">blog</HeaderLink>~ my written thoughts and ideas</li> <li><HeaderLink href="/blog">✍️ blog</HeaderLink>~ i write my thoughts sometimes</li>
<li><HeaderLink href="/logs">logs</HeaderLink>~ a record of what I've watched, read & climbed</li> <li><HeaderLink href="/logs">🗂️ logs</HeaderLink>~ a record of what I've watched, read & climbed</li>
<li><HeaderLink href="/gallery">gallery</HeaderLink>~ moments and places of my life, in pictures</li> <li><HeaderLink href="/gallery">📸 gallery</HeaderLink>~ moments and places of my life, in pictures</li>
<li><HeaderLink href="/more">more</HeaderLink>~ additional pages</li> <li><HeaderLink href="/more">🦕 more</HeaderLink>~ additional pages</li>
</ul> </ul>
</div> </div>
</div> </div>

View file

@ -1,5 +1,5 @@
--- ---
title: 'Logs' title: '🗂️ Logs'
description: '' description: ''
layout: "../../layouts/Layout.astro" layout: "../../layouts/Layout.astro"
--- ---

View file

@ -1,5 +1,5 @@
--- ---
title: "Uses" title: "Uses"
description: "" description: ""
layout: "../layouts/Layout.astro" layout: "../layouts/Layout.astro"
--- ---

View file

@ -42,6 +42,18 @@ p {
border-top: 1px solid var(--light-1); border-top: 1px solid var(--light-1);
} }
/* INDEX */
.index li {
list-style: none;
padding: 10px 0 0 0;
}
.index a { color: var(--dark-link);}
.dark .index a { color: var(--light-link);}
.index a:hover { text-decoration: underline 2px;}
/* BLOG */ /* BLOG */
.blog p { .blog p {
margin: 10px 0 0 0; margin: 10px 0 0 0;