moved kamaitachi export to chunithm tabs

This commit is contained in:
Polaris 2024-09-02 07:54:42 -04:00
parent 0eabaef4d1
commit 6e22d8c822
5 changed files with 5 additions and 4 deletions

View File

@ -20,6 +20,7 @@ import { ChunithmTopPlays } from "@/components/userRatingBaseList/page";
import Patcher from "../../../components/patcher/page";
import { ChunithmNextPlays } from "@/components/userRatingBaseNextList/page";
import { getUserRatingBaseNextList } from "@/components/userRatingBaseNextList/action";
import { KamaitachiExport } from "@/components/kamaitachi/kamaitachiexport";
const getChuniTopPlays = async () => {
const topPlays = await getUserRatingBaseList();
@ -103,6 +104,7 @@ const Page = async () => {
<TabsTrigger value="TopPlays">Top Plays</TabsTrigger>
<TabsTrigger value="HotPlays">Hot Plays</TabsTrigger>
<TabsTrigger value="NextPlays">Next Plays</TabsTrigger>
<TabsTrigger value="KamaitachiExport">Kamaitachi Export</TabsTrigger>
</TabsList>
<TabsContent className="pt-1" value="scores">
@ -147,9 +149,10 @@ const Page = async () => {
<TabsContent value="NextPlays">
<ChunithmNextPlays chuniProfileNextPlays={NextChuniPlays} />
</TabsContent>
<TabsContent value="Patcher">
<Patcher />
<TabsContent value="KamaitachiExport">
<KamaitachiExport />
</TabsContent>
{/* <TabsContent value="Settings">
<Patcher />
</TabsContent> */}

View File

@ -6,8 +6,6 @@ import { usePathname } from "next/navigation";
const NAV_ITEMS = [
{ href: "/settings/home", label: "General" },
{ href: "/settings/security", label: "Security" },
{ href: "/settings/kamaitachi", label: "Kamaitachi Export" },
{ href: "/settings/versions", label: "Edit Game Version" },
];