mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 13:21:29 +04:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
26 lines
602 B
Plaintext
26 lines
602 B
Plaintext
---
|
|
import DefaultLayout from '@shared/layouts/DefaultLayout.astro';
|
|
import Card from '@ui/Card.astro';
|
|
import CardBody from '@ui/CardBody.astro';
|
|
import CardTitle from '@ui/CardTitle.astro';
|
|
---
|
|
|
|
<DefaultLayout
|
|
title="Layout playground"
|
|
pageHeader="Layout playground"
|
|
pretitle="Playground"
|
|
sidebar
|
|
sidebarDark
|
|
>
|
|
<div class="row row-cards">
|
|
<div class="col-12">
|
|
<Card>
|
|
<CardBody>
|
|
<CardTitle as="h2">Sandbox</CardTitle>
|
|
<p class="text-secondary mb-0">Edit this page to try layout options, components, and styles.</p>
|
|
</CardBody>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
</DefaultLayout>
|