summaryrefslogtreecommitdiff
path: root/src/routes/+layout.svelte
diff options
context:
space:
mode:
authortoufic ar <contact@toufy.me>2026-07-07 18:29:43 +0300
committertoufic ar <contact@toufy.me>2026-07-07 18:29:43 +0300
commitf7da804e40b990e5f1ee2214a2e2e4984d704f16 (patch)
treeafec975241b8feaf40c72c924217a6a724461c51 /src/routes/+layout.svelte
downloadwebsite-f7da804e40b990e5f1ee2214a2e2e4984d704f16.tar.gz
website-f7da804e40b990e5f1ee2214a2e2e4984d704f16.zip
initial commit
Diffstat (limited to 'src/routes/+layout.svelte')
-rw-r--r--src/routes/+layout.svelte17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte
new file mode 100644
index 0000000..591e009
--- /dev/null
+++ b/src/routes/+layout.svelte
@@ -0,0 +1,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()}