Skip to content

Commit

Permalink
feat(stats): Add layout to make it clean to wrap in website
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Oct 30, 2024
1 parent da85c12 commit deae273
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions sites/stats/pages/+layout.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<script>
import '@evidence-dev/tailwind/fonts.css';
import '../app.css';
import { EvidenceDefaultLayout } from '@evidence-dev/core-components';
export let data;
</script>

<EvidenceDefaultLayout {data} hideHeader={true} fullWidth={true}>
<slot slot="content" />
</EvidenceDefaultLayout>

0 comments on commit deae273

Please sign in to comment.