-
Notifications
You must be signed in to change notification settings - Fork 421
Expand file tree
/
Copy pathindex.astro
More file actions
25 lines (24 loc) · 850 Bytes
/
index.astro
File metadata and controls
25 lines (24 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
import Layout from '@/layouts/Layout.astro'
import Main from '@/components/Main.astro'
import MainExplore from '@/components/MainExplore.astro'
import ConversationSidebar from '@/components/conversations/ConversationSidebar'
import Settings from '@/components/settings/SettingsSidebar'
import ModalsLayer from '@/components/ModalsLayer'
import Sidebar from '@/components/ui/Sidebar'
import BuildStores from '@/components/client-only/BuildStores'
---
<Layout title="Anse">
<div class="h-100vh w-screen flex">
<Sidebar direction="left" class="hidden md:block">
<ConversationSidebar client:only />
</Sidebar>
<Main />
<!-- <MainExplore /> -->
<Sidebar direction="right" class="hidden lg:block">
<Settings client:only />
</Sidebar>
</div>
<ModalsLayer client:only />
<BuildStores client:only />
</Layout>