Adds authentication and pricing pages for user onboarding

Introduces comprehensive user authentication flow with plan selection and registration

Includes:
- Pricing page with plan details and selection
- Payment page with plan summary and card information
- Signup page for different plan tiers
- Shared authentication layout and design system improvements

Enhances user onboarding experience with clear plan information and streamlined signup process
This commit is contained in:
Janus C. H. Knudsen 2026-01-11 01:30:32 +01:00
parent cd092f8290
commit 217a9cd95c
18 changed files with 2312 additions and 165 deletions

View file

@ -101,11 +101,11 @@ swp-profile-section {
swp-profile-avatar-large {
width: 64px;
height: 64px;
border-radius: 50%;
border-radius: var(--radius-full);
background: var(--color-teal);
color: white;
font-size: 24px;
font-weight: 600;
font-size: var(--font-size-3xl);
font-weight: var(--font-weight-semibold);
display: flex;
align-items: center;
justify-content: center;
@ -114,7 +114,7 @@ swp-profile-avatar-large {
swp-profile-name-large {
font-size: var(--font-size-lg);
font-weight: 600;
font-weight: var(--font-weight-semibold);
color: var(--color-text);
margin-bottom: var(--spacing-1);
}