Segments phase 2: /segments/ browse page, /segments/new/ creation flow, activity detail shortcut
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
---
|
||||
import Base from '../../layouts/Base.astro';
|
||||
import SegmentsView from '../../components/SegmentsView.svelte';
|
||||
---
|
||||
<Base title="Segments — BincioActivity">
|
||||
<div class="flex flex-col" style="height: calc(100vh - 48px);">
|
||||
<SegmentsView base={import.meta.env.BASE_URL} client:only="svelte" />
|
||||
</div>
|
||||
</Base>
|
||||
@@ -0,0 +1,7 @@
|
||||
---
|
||||
import Base from '../../../layouts/Base.astro';
|
||||
import SegmentCreate from '../../../components/SegmentCreate.svelte';
|
||||
---
|
||||
<Base title="New Segment — BincioActivity">
|
||||
<SegmentCreate base={import.meta.env.BASE_URL} client:only="svelte" />
|
||||
</Base>
|
||||
Reference in New Issue
Block a user