mirror of
https://github.com/tabler/tabler.git
synced 2026-08-07 20:02:23 +04:00
d8956a06d6
Co-authored-by: Bartek <xbartoszdobija@gmail.com>
20 lines
474 B
Plaintext
20 lines
474 B
Plaintext
---
|
|
// Port of preview/pages/layout-vertical-right.html (layout: homepage)
|
|
import DefaultLayout from '@shared/layouts/DefaultLayout.astro';
|
|
import HomepageContent from '@shared/components/HomepageContent.astro';
|
|
---
|
|
|
|
<DefaultLayout
|
|
title="Dashboard"
|
|
pageHeader="Right vertical layout"
|
|
pretitle="Overview"
|
|
actions="buttons"
|
|
pageMenu="layout.vertical-end"
|
|
pageLibs={['apexcharts', 'jsvectormap']}
|
|
sidebar
|
|
sidebarEnd
|
|
hideTopbar
|
|
>
|
|
<HomepageContent />
|
|
</DefaultLayout>
|