feat: ship creator journey v2 and profile updates

This commit is contained in:
2026-04-12 21:42:07 +02:00
parent a2457f4e49
commit d5cff21ea2
335 changed files with 20147 additions and 1545 deletions

View File

@@ -3,9 +3,21 @@ import React from 'react'
import { createRoot } from 'react-dom/client'
import { createInertiaApp } from '@inertiajs/react'
const pages = {
...import.meta.glob('./Pages/Help/**/*.jsx'),
...import.meta.glob('./Pages/Collection/**/*.jsx'),
...import.meta.glob('./Pages/Group/**/*.jsx'),
...import.meta.glob([
'./Pages/Help/**/*.jsx',
'!./Pages/Help/**/__tests__/**',
'!./Pages/Help/**/*.test.jsx',
]),
...import.meta.glob([
'./Pages/Collection/**/*.jsx',
'!./Pages/Collection/**/__tests__/**',
'!./Pages/Collection/**/*.test.jsx',
]),
...import.meta.glob([
'./Pages/Group/**/*.jsx',
'!./Pages/Group/**/__tests__/**',
'!./Pages/Group/**/*.test.jsx',
]),
}
function resolvePage(name) {