summaryrefslogtreecommitdiffstats
path: root/apps/portal/src/app/pages/profile/index.svelte
blob: 0929c3c4cf20923e29e2fc1e8d14ec209299eb49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<script>
	import {push} from "svelte-spa-router";
	import {Bread, Crumb} from "$shared/components/breadcrumb/index";
	import Layout from "$app/pages/_layout@loggedin.svelte";
</script>

<Layout>
    <Bread>
        <Crumb name="Home"
               withArrow="true"
               isLink="true"
               on:click={() => push("/")}/>
        <Crumb name="Profile"/>
    </Bread>
    <h1>Profile</h1>
</Layout>