Updated guild members

This commit is contained in:
2025-09-28 00:06:40 +02:00
parent 4cddfb8104
commit 75aed0d3a9
7 changed files with 326 additions and 4 deletions

View File

@@ -9,6 +9,7 @@ import { Metadata } from "next"
import { ReactNode, Suspense } from "react"
import z from "zod"
import { GuildPageLoadText } from "./_client"
import { GuildMembers } from "./_components/members"
import Sidebar from "./_components/sidebar"
export async function generateMetadata({ params, searchParams }: PageProps<"/guild/[value]">): Promise<Metadata> {
@@ -111,8 +112,8 @@ async function SuspendedPage({ params, searchParams }: Pick<PageProps<"/guild/[v
</div>
<div className="flex flex-col gap-6 px-6 pb-4 mt-8 w-full max-w-7xl md:flex-row">
<Sidebar guild={guild} />
<div className="mx-auto w-full lg:mx-0 lg:w-3/4 max-w-120 md:max-w-7/10">
Hello
<div className="mx-auto space-y-4 w-full lg:mx-0 lg:w-3/4 max-w-120 md:max-w-7/10">
<GuildMembers members={guild.members} />
</div>
</div>
</div>