-
Notifications
You must be signed in to change notification settings - Fork 16
/
app.vue
29 lines (28 loc) · 793 Bytes
/
app.vue
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
26
27
28
29
<template>
<div>
<!-- Header -->
<Header />
<div class="container lg:grid lg:grid-cols-12 lg:gap-10">
<!-- Sidebar -->
<Sidebar class="sticky top-[65px] hidden h-[calc(100vh-65px)] py-5 lg:col-span-3 lg:block" />
<!-- Main Section -->
<main class="py-5 lg:col-span-6">
<!-- Status Cards -->
<StatusCard />
<!-- New customer list -->
<NewCustomers />
<!-- Charts -->
<SalesChart />
<!-- Recent orders -->
<RecentOrders />
</main>
<div class="hidden py-5 lg:col-span-3 lg:block">
<!-- Profile info to the side -->
<ProfileInfo />
<hr class="my-5" />
<!-- Reminders to the side -->
<Reminders />
</div>
</div>
</div>
</template>