tangled
alpha
login
or
join now
samanthanguyen.me
/
www
0
fork
atom
samantha's personal website!~ ✨
samanthanguyen.me
0
fork
atom
overview
issues
1
pulls
pipelines
Update +layout.svelte
samanthanguyen.me
10 months ago
23ddd90f
7fb9f78c
+13
-8
1 changed file
expand all
collapse all
unified
split
src
routes
+layout.svelte
+13
-8
src/routes/+layout.svelte
···
1
1
<script lang="ts">
2
2
-
import '../app.css'
3
3
-
let { children } = $props()
2
2
+
import "../app.css";
3
3
+
let { children } = $props();
4
4
</script>
5
5
6
6
<svelte:head>
7
7
<title>samanthanguyen.me</title>
8
8
-
<meta name="description" content="Samantha Nguyen. An artist, software engineer, and aspiring computer scientist" />
8
8
+
<meta
9
9
+
name="description"
10
10
+
content="Samantha Nguyen. An artist and software engineer"
11
11
+
/>
9
12
</svelte:head>
10
13
<div
11
14
class={[
12
12
-
'mx-8 max-w-lg',
13
13
-
'lg:mx-auto lg:max-w-xl',
14
14
-
'flex flex-col gap-6 lg:gap-8',
15
15
+
"mx-8 max-w-lg",
16
16
+
"lg:mx-auto lg:max-w-xl",
17
17
+
"flex flex-col gap-6 lg:gap-8",
15
18
]}
16
19
>
17
20
{@render children()}
···
19
22
20
23
<style>
21
24
@font-face {
22
22
-
font-family: 'Departure Mono';
25
25
+
font-family: "Departure Mono";
23
26
font-style: normal;
24
27
font-weight: 400;
25
25
-
src: local('Departure Mono'), url('/fonts/DepartureMono-Regular.woff2') format('woff2');
28
28
+
src:
29
29
+
local("Departure Mono"),
30
30
+
url("/fonts/DepartureMono-Regular.woff2") format("woff2");
26
31
font-display: swap;
27
32
}
28
33
</style>