Skip to content
Snippets Groups Projects
page.tsx 639 B
Newer Older
import Sort from "@/components/filter-sort-games";
import { InfiniteScrollGames } from "@/components/infinity-scroll";
Yusuf Akgül's avatar
Yusuf Akgül committed
import ScrollToTop from "@/components/scroll-to-top";
Yusuf Akgül's avatar
Yusuf Akgül committed

Yusuf Akgül's avatar
Yusuf Akgül committed
// renders a list of games infinitely
export default async function GamesPage() {
Yusuf Akgül's avatar
Yusuf Akgül committed
    return (
        <main className="main-content">
            <div className="flex justify-center">
                <div className="fixed top-30 z-40">
Yusuf Akgül's avatar
Yusuf Akgül committed
                </div>
                <InfiniteScrollGames />
            </div>
            <div className="side-content">
                <Sort />
            </div>
Yusuf Akgül's avatar
Yusuf Akgül committed
    )
}