2025-06-18 07:46:59 -04:00
|
|
|
---
|
|
|
|
|
import Base from "../layouts/Base.astro";
|
|
|
|
|
import Root from "../components/AppLayout.jsx";
|
|
|
|
|
import LyricSearch from '../components/LyricSearch.jsx';
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
<Base>
|
|
|
|
|
<section>
|
2025-10-08 15:49:00 -04:00
|
|
|
<div class="prose prose-neutral dark:prose-invert">
|
|
|
|
|
<Root
|
|
|
|
|
child="LyricSearch"
|
|
|
|
|
client:only="react"
|
|
|
|
|
/>
|
2025-06-18 07:46:59 -04:00
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
</Base>
|