19 lines
510 B
TypeScript
19 lines
510 B
TypeScript
|
|
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;
|