chore(examples): add routify set-up

This commit is contained in:
Eric Liu 2020-09-07 14:51:19 -07:00
commit 1d479eb835
16 changed files with 2885 additions and 0 deletions

View file

@ -0,0 +1,19 @@
<script>
import { metatags, page } from "@sveltech/routify";
import { Content, Grid } from "carbon-components-svelte";
import Navigation from "./_navigation.svelte";
import Theme from "../components/Theme.svelte";
</script>
<style lang="scss" global>
@import "carbon-components-svelte/css/all";
</style>
<Theme persist theme="g10">
<Navigation />
<Content style="background: none; padding: 1rem">
<Grid>
<slot />
</Grid>
</Content>
</Theme>