import { EmptyPlaceholder } from "@/components/dashboard/empty-placeholder"; // import { getTenantId } from "@/lib/auth"; // import { db } from "@/lib/db"; import { ShieldBan } from "lucide-react"; import Link from "next/link"; import { redirect } from "next/navigation"; // import { UsageBanner } from "./banner"; import { TooltipProvider } from "@/components/ui/tooltip"; interface LayoutProps { children: React.ReactNode; } export default async function Layout({ children }: LayoutProps) { return ( <>
{children}
); }