Skip to content
Snippets Groups Projects
page.tsx 851 B
Newer Older
import Sort from "@/components/filter-sort-games"
Yusuf Akgül's avatar
Yusuf Akgül committed
import { PopoverSort } from "@/components/filter-sort-games-mobile"
import { GlobalLayout } from "@/components/global-layout"
import { InfiniteScrollGames } from "@/components/infinity-scroll"
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 (
                    <ScrollToTop />
Yusuf Akgül's avatar
Yusuf Akgül committed

Yusuf Akgül's avatar
Yusuf Akgül committed

                    <div className="md:hidden">
                        <PopoverSort />
                    </div>
Yusuf Akgül's avatar
Yusuf Akgül committed
                <div className="hidden md:block">
                    <Sort />
                </div>
Yusuf Akgül's avatar
Yusuf Akgül committed
    )
}