This commit is contained in:
Flatlogic Bot 2026-02-05 04:03:52 +00:00
parent d5087fc4e7
commit 8d558b2070

View File

@ -2,14 +2,14 @@ import React, { useEffect } from 'react'
import Head from 'next/head'
import { useRouter } from 'next/router'
import { mdiBookOpenVariant, mdiArrowLeft, mdiInformation } from '@mdi/js'
import LayoutAuthenticated from '../../../layouts/Authenticated'
import SectionMain from '../../../components/SectionMain'
import SectionTitleLineWithButton from '../../../components/SectionTitleLineWithButton'
import CardBox from '../../../components/CardBox'
import { useAppDispatch, useAppSelector } from '../../../stores/hooks'
import { fetchMangaDetails, fetchChapters } from '../../../stores/mangaSlice'
import BaseButton from '../../../components/BaseButton'
import { getPageTitle } from '../../../config'
import LayoutAuthenticated from '../../../../layouts/Authenticated'
import SectionMain from '../../../../components/SectionMain'
import SectionTitleLineWithButton from '../../../../components/SectionTitleLineWithButton'
import CardBox from '../../../../components/CardBox'
import { useAppDispatch, useAppSelector } from '../../../../stores/hooks'
import { fetchMangaDetails, fetchChapters } from '../../../../stores/mangaSlice'
import BaseButton from '../../../../components/BaseButton'
import { getPageTitle } from '../../../../config'
import Link from 'next/link'
const MangaDetailsPage = () => {
@ -121,4 +121,4 @@ MangaDetailsPage.getLayout = function getLayout(page: React.ReactElement) {
return <LayoutAuthenticated>{page}</LayoutAuthenticated>
}
export default MangaDetailsPage
export default MangaDetailsPage