16 lines
404 B
Plaintext
16 lines
404 B
Plaintext
---
|
|
import Base from "../layouts/Base.astro";
|
|
import Root from "../components/AppLayout.jsx";
|
|
import "@styles/player.css";
|
|
---
|
|
|
|
<Base>
|
|
<section>
|
|
<div class="prose prose-neutral dark:prose-invert">
|
|
<Root child="Player" client:only="react">
|
|
</Root>
|
|
<script is:inline src="/scripts/jquery/dist/jquery.js" />
|
|
<script is:inline src="/scripts/howler/dist/howler.js" />
|
|
</section>
|
|
</Base>
|