Skip to content

Commit

Permalink
chore: move files to homepage module
Browse files Browse the repository at this point in the history
  • Loading branch information
mpblocky committed Mar 3, 2025
1 parent 6081096 commit 0e5378f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export * from './home-container';
export * from './welcome';
export * from './choose-sign-up-account-type';
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ import {
} from '@/shared/components/ui/icons';
import { Button } from '@/shared/components/ui/button';
import { useIsMobile } from '@/shared/hooks/use-is-mobile';
import { OperatorSignIn } from '@/modules/homepage/hooks/use-operator-signin';
import { WorkerSignIn } from '@/modules/homepage/components/worker-signin';
import { WorkerSignIn } from '@/modules/homepage/components/worker-sign-in';
import { useColorMode } from '@/shared/contexts/color-mode';
import { useHomePageState } from '@/shared/contexts/homepage-state';
import { useBackgroundContext } from '@/shared/contexts/background';
import { OperatorSignIn } from './operator-sign-in';

export function Welcome() {
const { colorPalette, isDarkMode } = useColorMode();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useAuth } from '@/modules/auth/hooks/use-auth';
import { routerPaths } from '@/router/router-paths';
import { Button } from '@/shared/components/ui/button';
import { useColorMode } from '@/shared/contexts/color-mode';
import { HomeContainer } from '@/modules/homepage/components/home-container';
import { HomeContainer } from '@/modules/homepage/components';
import { useHomePageState } from '@/shared/contexts/homepage-state';

export type HomePageStageType = 'welcome' | 'chooseSignUpAccountType';
Expand Down

0 comments on commit 0e5378f

Please sign in to comment.