diff options
| author | pml68 <contact@pml68.dev> | 2024-12-11 22:36:22 +0100 |
|---|---|---|
| committer | pml68 <contact@pml68.dev> | 2024-12-11 22:36:22 +0100 |
| commit | b241863c3b6a10d886d6b84514c49e0196ae5f4d (patch) | |
| tree | bda0081ec58b466efa8a36cd3a3515455ce84b80 /src | |
| parent | fix: re-add margin-right for social icons (diff) | |
| download | pml68.dev-b241863c3b6a10d886d6b84514c49e0196ae5f4d.tar.gz | |
feat: update domain
Diffstat (limited to '')
| -rw-r--r-- | src/lib/socials.json | 2 | ||||
| -rw-r--r-- | src/routes/+layout.svelte | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/socials.json b/src/lib/socials.json index 16ebb5f..ea75d91 100644 --- a/src/lib/socials.json +++ b/src/lib/socials.json @@ -17,7 +17,7 @@ "iconIndex": 3 }, { - "link": "mailto:contact@pml68.me", + "link": "mailto:contact@pml68.dev", "iconIndex": 4 } ] diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index f45c602..856ee27 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -1,10 +1,10 @@ <script lang="ts"> - import '../app.scss' + import "../app.scss"; - import WaveLeft from '$lib/assets/wave1.svg?url' - import WaveRight from '$lib/assets/wave2.svg?url' + import WaveLeft from "$lib/assets/wave1.svg?url"; + import WaveRight from "$lib/assets/wave2.svg?url"; interface Props { - children?: import('svelte').Snippet; + children?: import("svelte").Snippet; } let { children }: Props = $props(); |
