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

22 lines
480 B
Plaintext
Raw Normal View History

2025-08-09 07:10:04 -04:00
---
2025-08-14 11:40:02 -04:00
import MediaRequestForm from "@/components/TRip/MediaRequestForm"
2025-08-09 07:10:04 -04:00
import Base from "@/layouts/Base.astro";
import Root from "@/components/AppLayout.jsx";
import { requireAuthHook } from "@/hooks/requireAuthHook";
2025-08-09 07:10:04 -04:00
2025-08-28 11:15:17 -04:00
const user = await requireAuthHook(Astro);
if (!user) {
return Astro.redirect('/login');
2025-08-09 07:10:04 -04:00
}
2025-08-28 11:15:17 -04:00
2025-08-09 07:10:04 -04:00
---
<Base>
<section>
<div class="prose prose-neutral dark:prose-invert">
<Root child="qs2.MediaRequestForm" client:only="react">
</Root>
</section>
</Base>