💄 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: ""
layout: "../layouts/Layout.astro"
---

View file

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

View file

@ -1,5 +1,5 @@
---
title: 'gallery'
title: '📸 gallery'
description: ''
layout: "../../layouts/Layout.astro"
---
@ -9,4 +9,4 @@ Under you'll see different pages where I collect and showcase some of my photogr
This way you can check out moments and places of my life, but keep in mind I'm no photographer lol. These are just my memories and a way to replace Instagram.
- [**cairn collection**](/gallery/cairns)
- [**valencia**](/gallery/valencia)
- [**valencia**](/gallery/valencia)

View file

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

View file

@ -16,12 +16,12 @@ import HeaderLink from '../components/HeaderLink.astro';
</div>
<div>
<h1 class="text-xl font-semibold">pages</h1>
<ul class="flex flex-col blog">
<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="/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="/more">more</HeaderLink>~ additional pages</li>
<ul class="flex flex-col index">
<li><HeaderLink href="/about">whoami</HeaderLink>~ sid, i am</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="/gallery">📸 gallery</HeaderLink>~ moments and places of my life, in pictures</li>
<li><HeaderLink href="/more">🦕 more</HeaderLink>~ additional pages</li>
</ul>
</div>
</div>

View file

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

View file

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

View file

@ -42,6 +42,18 @@ p {
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 p {
margin: 10px 0 0 0;