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

22 lines
590 B
Plaintext
Raw Normal View History

2025-08-09 07:10:04 -04:00
---
import Base from "@/layouts/Base.astro";
import Root from "@/components/AppLayout.jsx";
2025-08-28 11:15:17 -04:00
// Auth is handled by middleware - user available in Astro.locals.user
// Middleware redirects to /login if not authenticated
const user = Astro.locals.user as any;
2025-08-09 07:10:04 -04:00
---
<Base>
<section class="page-section trip-section">
<Root child="qs2.RequestManagement" client:only="react" />
2025-08-09 07:10:04 -04:00
</section>
</Base>
<style is:global>
/* Override main container width for TRip pages */
html:has(.trip-section) main.page-enter {
max-width: 1400px !important;
width: 100% !important;
}
</style>