Files
codey.lol/src/pages/index.astro

17 lines
344 B
Plaintext
Raw Normal View History

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>
<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>