collectionPage( 'Groups Quickstart — Skinbase', 'A fast, creator-friendly Groups quickstart for Skinbase Nova. Learn when to use a Group, create one, invite members, and publish your first Group artwork with correct contributor credit.', $canonical, ) ->toArray(); $seo['og_type'] = 'article'; return Inertia::render('Group/GroupQuickstartPage', [ 'title' => 'Groups Quickstart', 'description' => 'The fastest way to understand Groups, create one, invite members, and publish your first collaborative artwork with correct contributor credit.', 'seo' => $seo, 'links' => [ 'groups_directory' => route('groups.index'), 'create_group' => route('studio.groups.create'), 'group_studio' => route('studio.groups.index'), 'full_documentation' => route('help.groups'), 'faq' => route('help.groups.faq'), 'help_home' => route('help'), ], 'auth' => [ 'signed_in' => $request->user() !== null, ], ])->rootView('collections'); } }