export const metadata = { title: "Cart | allBETs" };

// CartPage itself is a client component (needs useCart/useRouter), and a client
// component can't export `metadata` — a segment layout can, independent of
// whether the page below it is a client or server component.
export default function CartLayout({ children }: { children: React.ReactNode }) {
  return children;
}
