"use client"; import type { ReactNode } from "react"; import { SignedIn, UserButton } from "@clerk/nextjs"; import { BrandMark } from "@/components/atoms/BrandMark"; export function LandingShell({ children }: { children: ReactNode }) { return (
); }