import React from 'react' import StudioLayout from '../../Layouts/StudioLayout' import { usePage } from '@inertiajs/react' export default function StudioSettings() { const { props } = usePage() return (

System handoff

Studio now keeps creator workflow preferences in their own surface. This page stays focused on links out to adjacent dashboards and the control points that do not belong in the day-to-day workflow UI.

{(props.links || []).map((link) => (
{link.label}

Open the linked dashboard or settings surface without losing the Studio navigation shell as the default control plane.

))}
{(props.sections || []).map((section) => (

{section.title}

{section.body}

{section.cta}
))}
) }