import Link from "next/link"; import { notFound, redirect } from "next/navigation"; import { auth } from "@clerk/nextjs/app-beta"; import { PageHeader } from "@/components/page-header"; import { useUser } from "@clerk/clerk-react"; import { Fragment } from "react"; import { cn } from "@/lib/utils"; import { getTenantId } from "@/lib/auth"; export default async function Page(_props: { params: { tenantSlug: string }; }) { const tenantId = getTenantId(); const stats: { label: string; value: string; }[] = [ { label: "Total Channels", value: '0', }, { label: "Total Events (7 days)", value: '0', }, ]; return (
{/* Stats */}
{/*
*/}

{"Personal Account"}

{/*

{channel.description}

*/}
test
= 4, }, )} > {" "} {stats.map((stat, statIdx) => (
{stat.label}
{/*
{stat.change}
*/}
{stat.value}
))}
{/* Recent activity table */}

Recent events

Event Content More details
); }