mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 13:21:29 +04:00
31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
---
|
|
import DefaultLayout from '@shared/layouts/DefaultLayout.astro';
|
|
import Offcanvas from '@ui/Offcanvas.astro';
|
|
import OffcanvasBody from '@ui/OffcanvasBody.astro';
|
|
---
|
|
|
|
<DefaultLayout title="Cookie banner" pageHeader="Cookie banner" pageMenu="extra.cookie-banner">
|
|
<Offcanvas direction="bottom" show class="h-auto" tabindex="-1" id="offcanvasBottom" aria-modal="true" role="dialog">
|
|
<OffcanvasBody>
|
|
<div class="container">
|
|
<div class="row align-items-center">
|
|
<div class="col">
|
|
<strong>Do you like cookies?</strong> 🍪 We use cookies to ensure you get the best experience on our website.
|
|
<a href="./terms-of-service.html" target="_blank">Learn more</a>
|
|
</div>
|
|
<div class="col-auto">
|
|
<button type="button" class="btn btn-primary" data-bs-dismiss="offcanvas">
|
|
Essential Cookies Only
|
|
</button>
|
|
</div>
|
|
<div class="col-auto">
|
|
<button type="button" class="btn btn-primary" data-bs-dismiss="offcanvas">
|
|
Allow All Cookies
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</OffcanvasBody>
|
|
</Offcanvas>
|
|
</DefaultLayout>
|