-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from themerous/minseok
front work
- Loading branch information
Showing
30 changed files
with
747 additions
and
1,074 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import * as React from 'react'; | ||
import type { Metadata } from 'next'; | ||
import Stack from '@mui/material/Stack'; | ||
|
||
import { config } from '@/config'; | ||
import { AccountDetailsForm } from '@/components/dashboard/account/account-details-form'; | ||
import { AccountInfo } from '@/components/dashboard/account/account-info'; | ||
import YutPan from "@/components/game/YutPan"; | ||
import ChatComponent from "@/components/game/chatComponent"; | ||
|
||
export const metadata = { title: `Account | Dashboard | ${config.site.name}` } satisfies Metadata; | ||
|
||
export default function Page(): React.JSX.Element { | ||
return ( | ||
<Stack spacing={3}> | ||
<YutPan/> | ||
<ChatComponent/> | ||
</Stack> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { redirect } from 'next/navigation'; | ||
|
||
export default function Page(): never { | ||
redirect('/dashboard'); | ||
redirect('/game-room'); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
import type { Icon } from '@phosphor-icons/react/dist/lib/types'; | ||
import { ChartPie as ChartPieIcon } from '@phosphor-icons/react/dist/ssr/ChartPie'; | ||
import { GearSix as GearSixIcon } from '@phosphor-icons/react/dist/ssr/GearSix'; | ||
import { PlugsConnected as PlugsConnectedIcon } from '@phosphor-icons/react/dist/ssr/PlugsConnected'; | ||
import { Ranking } from '@phosphor-icons/react/dist/ssr/Ranking'; | ||
import { GameController } from '@phosphor-icons/react/dist/ssr/GameController'; | ||
import { User as UserIcon } from '@phosphor-icons/react/dist/ssr/User'; | ||
import { Users as UsersIcon } from '@phosphor-icons/react/dist/ssr/Users'; | ||
import { XSquare } from '@phosphor-icons/react/dist/ssr/XSquare'; | ||
|
||
export const navIcons = { | ||
'chart-pie': ChartPieIcon, | ||
'gear-six': GearSixIcon, | ||
'plugs-connected': PlugsConnectedIcon, | ||
'ranking': Ranking, | ||
'x-square': XSquare, | ||
'game-controller': GameController, | ||
user: UserIcon, | ||
users: UsersIcon, | ||
} as Record<string, Icon>; |
Oops, something went wrong.