diff --git a/src/app/gallery/[tag]/[page]/page.tsx b/src/app/gallery/[tag]/[page]/page.tsx index bf2c83e..46d5f2a 100644 --- a/src/app/gallery/[tag]/[page]/page.tsx +++ b/src/app/gallery/[tag]/[page]/page.tsx @@ -1,6 +1,8 @@ import Gallery from '@/components/Gallery'; +import Paginator from '@/components/Paginator'; import Topbar from '@/components/Topbar'; import { ImagesResponse, TagsResponse } from '@/interfaces/api'; +import { PaginatorPosition } from '@/interfaces/paginator'; import { redirect } from 'next/navigation'; import { Suspense } from 'react'; @@ -46,6 +48,7 @@ export default async function GalleryPage({ params }: { params: Promise<{ page: Loading gallery...}> + ); diff --git a/src/styles/Paginator.module.scss b/src/styles/Paginator.module.scss index 663f3e6..7e99b95 100644 --- a/src/styles/Paginator.module.scss +++ b/src/styles/Paginator.module.scss @@ -33,4 +33,8 @@ } } } + + &Bottom { + justify-content: center; + } }