19 lines
522 B
HTML
19 lines
522 B
HTML
@use super::return_to_main_html;
|
|
|
|
@()
|
|
|
|
<main class="grid grid-rows-6 grid-cols-3 grid-flow-col h-full">
|
|
<div class="fixed right-0 top-0 pr-4 pt-4">
|
|
@:return_to_main_html()
|
|
</div>
|
|
<div hx-boost="true" class="flex justify-center items-center">
|
|
<a href="/management/dancers">
|
|
<button type="button">Dancers</button>
|
|
</a>
|
|
</div>
|
|
<div hx-boost="true" class="flex justify-center items-center">
|
|
<a href="/shift_reports">
|
|
<button type="button">Shift Reports</button>
|
|
</a>
|
|
</div>
|
|
</main>
|