samantha's personal website!~ ✨ samanthanguyen.me

Update +layout.svelte

+13 -8
+13 -8
src/routes/+layout.svelte
··· 1 1 <script lang="ts"> 2 - import '../app.css' 3 - let { children } = $props() 2 + import "../app.css"; 3 + let { children } = $props(); 4 4 </script> 5 5 6 6 <svelte:head> 7 7 <title>samanthanguyen.me</title> 8 - <meta name="description" content="Samantha Nguyen. An artist, software engineer, and aspiring computer scientist" /> 8 + <meta 9 + name="description" 10 + content="Samantha Nguyen. An artist and software engineer" 11 + /> 9 12 </svelte:head> 10 13 <div 11 14 class={[ 12 - 'mx-8 max-w-lg', 13 - 'lg:mx-auto lg:max-w-xl', 14 - 'flex flex-col gap-6 lg:gap-8', 15 + "mx-8 max-w-lg", 16 + "lg:mx-auto lg:max-w-xl", 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 - font-family: 'Departure Mono'; 25 + font-family: "Departure Mono"; 23 26 font-style: normal; 24 27 font-weight: 400; 25 - src: local('Departure Mono'), url('/fonts/DepartureMono-Regular.woff2') format('woff2'); 28 + src: 29 + local("Departure Mono"), 30 + url("/fonts/DepartureMono-Regular.woff2") format("woff2"); 26 31 font-display: swap; 27 32 } 28 33 </style>