import React from 'react' import { usePage } from '@inertiajs/react' import StudioLayout from '../../Layouts/StudioLayout' import StudioContentBrowser from '../../components/Studio/StudioContentBrowser' function StatCard({ label, value, icon }) { return (
{label}
{value}
) } export default function StudioCardsIndex() { const { props } = usePage() const summary = props.summary || {} return (

Creation surface

Build quote cards, mood cards, and visual text art.

Cards now live inside the same shared Creator Studio queue as artworks, collections, and stories, while keeping the dedicated editor and analytics flow.

New card Browse public cards
) }