Skip to content

Commit 0d1fdaa

Browse files
committed
🥟 Add about page
1 parent 8f60171 commit 0d1fdaa

File tree

2 files changed

+65
-0
lines changed

2 files changed

+65
-0
lines changed

gyoza/src/lib/MainHeader.svelte

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
<header>
1919
<nav>
2020
<a href="/">🏠️</a>
21+
<a class="plain" href="/about">About</a>
2122
{#if $verify?.data?.is_authenticated}
2223
<a href="/settings">Settings</a>
2324
<a href="/log-out" on:click={handleLogOut}>Log Out</a>
@@ -40,6 +41,9 @@
4041
@apply border border-[#88889b] rounded py-1 px-1.5 text-[#88889b];
4142
@apply hover:border-white hover:text-white;
4243
}
44+
a.plain {
45+
@apply border-transparent;
46+
}
4347
a:first-of-type {
4448
@apply mr-auto;
4549
}
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
<svelte:head>
2+
<title>About</title>
3+
<meta name="description" content="What in the world is izakaya.dev?" />
4+
</svelte:head>
5+
6+
<main class="max-w-7xl mx-auto flex flex-col p-4">
7+
<section>
8+
<div>
9+
What is this website?
10+
<a href="https://github.com/ruksi/izakaya">
11+
TL;DR: a playground project
12+
</a>
13+
</div>
14+
<div>
15+
Made with love by <a href="https://ruk.si/">Ruksi</a>
16+
</div>
17+
<div>
18+
License:
19+
<a href="https://github.com/ruksi/izakaya/blob/main/LICENSE">
20+
MIT
21+
</a>
22+
</div>
23+
</section>
24+
25+
<section>
26+
<div class="text-zinc-50">
27+
Multicolor emojis by
28+
<a href="https://openmoji.org/">OpenMoji</a>
29+
</div>
30+
<div>
31+
License:
32+
<a href="https://creativecommons.org/licenses/by-sa/4.0/#">
33+
CC BY-SA 4.0
34+
</a>
35+
</div>
36+
</section>
37+
38+
<section>
39+
<div class="text-zinc-50">
40+
Monochrome interface icons by
41+
<a href="https://fontawesome.com/license/free">
42+
Font Awesome
43+
</a>
44+
</div>
45+
<div>
46+
License:
47+
<a href="https://creativecommons.org/licenses/by-sa/4.0/#">
48+
CC BY-SA 4.0
49+
</a>
50+
</div>
51+
</section>
52+
</main>
53+
54+
<style lang="postcss">
55+
section {
56+
@apply mb-4;
57+
}
58+
a {
59+
@apply text-purple-300;
60+
}
61+
</style>

0 commit comments

Comments
 (0)