IMPORVE ONBOARDING STEPS

This commit is contained in:
Urtzi Alfaro
2025-11-09 09:22:08 +01:00
parent 4678f96f8f
commit cbe19a3cd1
27 changed files with 2801 additions and 1149 deletions

View File

@@ -14,8 +14,8 @@ const OnboardingPage: React.FC = () => {
variant: "minimal"
}}
>
<div className="min-h-screen bg-[var(--bg-primary)] py-8">
<div className="container mx-auto px-4">
<div className="min-h-screen bg-[var(--bg-primary)] py-4 md:py-8">
<div className="container mx-auto px-2 sm:px-4">
<UnifiedOnboardingWizard />
</div>
</div>

View File

@@ -1,18 +0,0 @@
import React from 'react';
import { SetupWizard } from '../../components/domain/setup-wizard';
/**
* Setup Page - Wrapper for the Setup Wizard
* This page is accessed after completing the initial onboarding
* and guides users through setting up their bakery operations
* (suppliers, inventory, recipes, quality standards, team)
*/
const SetupPage: React.FC = () => {
return (
<div className="min-h-screen bg-[var(--bg-primary)]">
<SetupWizard />
</div>
);
};
export default SetupPage;