Loading…
Loading…
Customer account dashboard with orders, addresses, and profile management
The customer account section starting at /account, with sub-routes for different management pages. All account pages are wrapped in Protected to require authentication, with AccountNav providing sidebar navigation.
app/account/page.tsx # Dashboard
app/account/layout.tsx # Protected + AccountNav wrapper
app/account/orders/page.tsx # Order history
app/account/addresses/page.tsx # Billing/shipping addresses
app/account/details/page.tsx # Profile editing
app/account/payment-methods/page.tsx # Saved payment methods
app/account/subscriptions/page.tsx # Subscription management
Or with NextPress route groups: app/(main)/account/...
productTypes includes subscriptionThe account layout wraps all sub-pages with:
| Configuration | Value |
|---|---|
includeAccountPages | true |