mirror of
https://github.com/ReVanced/revanced-website.git
synced 2026-01-29 05:41:03 +00:00
20 lines
438 B
Svelte
20 lines
438 B
Svelte
<script lang="ts">
|
|
import '../app.css';
|
|
import favicon from '$assets/favicon.ico';
|
|
import NavBar from '$components/molecules/NavBar.svelte';
|
|
import ModalBackground from '$components/atoms/ModalBackground.svelte';
|
|
import type { WithChildren } from '$types';
|
|
|
|
let { children }: WithChildren = $props();
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<link rel="icon" href={favicon} />
|
|
</svelte:head>
|
|
|
|
<NavBar />
|
|
|
|
<ModalBackground />
|
|
|
|
{@render children()}
|