[FA-misc] Astro migration works, probably want to touchup the frontend but that can be in Phase 4

This commit is contained in:
gamer147
2025-11-28 10:43:51 -05:00
parent bc83bffb4b
commit 8d6f0d6cfd
94 changed files with 11948 additions and 9202 deletions

View File

@@ -0,0 +1,11 @@
---
// SSR page (default in server mode, no prerender export needed)
import AppLayout from '../../layouts/AppLayout.astro';
import NovelDetailPage from '../../lib/components/NovelDetailPage.svelte';
const { id } = Astro.params;
---
<AppLayout title="Novel Detail - FictionArchive">
<NovelDetailPage novelId={id} client:load />
</AppLayout>