import { CardsPage } from "@/components/cartoes/cards-page"; import { getUserId } from "@/lib/auth/server"; import { fetchCardsForUser } from "./data"; export default async function Page() { const userId = await getUserId(); const { cards, accounts, logoOptions } = await fetchCardsForUser(userId); return (
); }