blob: 591e009bf5edc6fc7825488c72ba20fd78010673 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<script lang="ts">
import "./layout.css";
import favicon from "$lib/assets/favicon.ico";
let { children } = $props();
</script>
<svelte:head>
<link rel="icon" type="image/x-icon" href={favicon} />
<link rel="shortcut icon" type="image/x-icon" href={favicon} />
<link rel="apple-touch-icon" type="image/x-icon" href={favicon} />
<title>toufy</title>
<meta
name="description"
content="palestinian software engineer, tinkerer, linux enjoyer, privacy & security enthusiast, and free software advocate refuged in lebanon"
/>
</svelte:head>
{@render children()}
|