mirror of
https://github.com/danbulant/Portfolio
synced 2026-05-30 12:50:33 +00:00
22 lines
553 B
Svelte
22 lines
553 B
Svelte
<script lang="ts">
|
|
import PageTransition from '$lib/components/PageTransition.svelte';
|
|
|
|
export let data: { url: string };
|
|
</script>
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
|
|
<PageTransition url={data.url}>
|
|
<slot />
|
|
</PageTransition>
|
|
|
|
<style windi:preflights:global windi:safelist:global>
|
|
:global(html) {
|
|
font-family: 'Poppins', sans-serif;
|
|
}
|
|
</style>
|