[FA-6] Volumes work probably?

This commit is contained in:
gamer147
2025-12-29 21:28:07 -05:00
parent bee805c441
commit d87bd81190
13 changed files with 286 additions and 63 deletions

View File

@@ -1,10 +0,0 @@
---
import AppLayout from '../../../../layouts/AppLayout.astro';
import ChapterReaderPage from '../../../../lib/components/ChapterReaderPage.svelte';
const { id, chapterNumber } = Astro.params;
---
<AppLayout title="Reading - FictionArchive">
<ChapterReaderPage novelId={id} chapterNumber={chapterNumber} client:load />
</AppLayout>

View File

@@ -0,0 +1,10 @@
---
import AppLayout from '../../../../../../layouts/AppLayout.astro';
import ChapterReaderPage from '../../../../../../lib/components/ChapterReaderPage.svelte';
const { id, volumeId, chapterNumber } = Astro.params;
---
<AppLayout title="Reading - FictionArchive">
<ChapterReaderPage novelId={id} volumeId={volumeId} chapterNumber={chapterNumber} client:load />
</AppLayout>