feat(dashboard): add customer accordion view and extension flow
All checks were successful
Staging Build / build (push) Successful in 3m1s

This commit is contained in:
DanielS
2026-07-21 08:43:00 +02:00
parent 86b63ce77e
commit 8b4fd5f02e
6 changed files with 390 additions and 110 deletions

16
shop/app/wizard/page.tsx Normal file
View File

@@ -0,0 +1,16 @@
import { redirect } from 'next/navigation'
interface PageProps {
searchParams: Promise<{ id?: string; orderId?: string; mode?: string }>
}
export default async function WizardPage({ searchParams }: PageProps) {
const params = await searchParams
const id = params.orderId || params.id
const mode = params.mode
const query = new URLSearchParams()
if (id) query.set('orderId', id)
if (mode) query.set('mode', mode)
redirect(`/order?${query.toString()}`)
}