bun.lockb
bun.lockb
This is a binary file and will not be displayed.
+1
package.json
+1
package.json
+4
-9
src/components/SiteLayout.astro
+4
-9
src/components/SiteLayout.astro
···
1
---
2
import { ViewTransitions } from "astro:transitions";
3
const { title } = Astro.props;
4
---
···
21
<h2 class="hidden md:flex">all things me!</h2>
22
</div>
23
24
-
<button id="menu_button" class="px-2 py-1 border border-yellow-500 self-end w-fit h-fit md:hidden">
25
-
Menu
26
-
</button>
27
28
<nav id="navigation" class="hidden md:flex flex-col gap-4 w-full md:col-span-1" transition:persist>
29
<hr class="border-yellow-500 " />
30
31
<section class="flex flex-col gap-2 text-white">
32
<h3 class="text-yellow-500">socials</h3>
33
-
<a href="https://twitter.com/zeu_dev" target="_blank" class="after:content-['_↗']">twitter</a>
34
<a href="https://github.com/zeucapua" target="_blank" class="after:content-['_↗']">github</a>
35
<a href="https://twitch.tv/zeu_dev" target="_blank" class="after:content-['_↗']">twitch</a>
36
</section>
37
38
<hr class="border-yellow-500 " />
···
63
</div>
64
</body>
65
</html>
66
-
67
-
<script>
68
-
const menuButton = document.querySelector("#menu_button");
69
-
const navSection = document.querySelector("#navigation");
70
-
</script>
71
72
<style is:global>
73
@font-face {
···
1
---
2
+
import NavigationDialog from "./NavigationDialog.svelte";
3
import { ViewTransitions } from "astro:transitions";
4
const { title } = Astro.props;
5
---
···
22
<h2 class="hidden md:flex">all things me!</h2>
23
</div>
24
25
+
<NavigationDialog client:load />
26
27
<nav id="navigation" class="hidden md:flex flex-col gap-4 w-full md:col-span-1" transition:persist>
28
<hr class="border-yellow-500 " />
29
30
<section class="flex flex-col gap-2 text-white">
31
<h3 class="text-yellow-500">socials</h3>
32
+
<a href="https://bsky.app/profile/zeu.dev" target="_blank" class="after:content-['_↗']">bluesky</a>
33
<a href="https://github.com/zeucapua" target="_blank" class="after:content-['_↗']">github</a>
34
<a href="https://twitch.tv/zeu_dev" target="_blank" class="after:content-['_↗']">twitch</a>
35
+
<a href="https://twitter.com/zeu_dev" target="_blank" class="after:content-['_↗']">twitter</a>
36
</section>
37
38
<hr class="border-yellow-500 " />
···
63
</div>
64
</body>
65
</html>
66
67
<style is:global>
68
@font-face {