- 홈 화면 및 전체적 ui 수정
This commit is contained in:
geonhee-min
2025-12-03 17:05:19 +09:00
parent e3091494b1
commit edef4273c0
3 changed files with 7 additions and 2 deletions

View File

@@ -9,6 +9,7 @@ import ResetPasswordPage from './ui/page/account/resetPassword/ResetPasswordPage
import { HomePage } from './ui/page/home/HomePage'; import { HomePage } from './ui/page/home/HomePage';
import type { AuthData } from './data/AuthData'; import type { AuthData } from './data/AuthData';
import { useEffect } from 'react'; import { useEffect } from 'react';
import { ScheduleMainPage } from './ui/page/schedule/ScheduleMainPage';
function App() { function App() {
const { authData, login } = useAuthStore(); const { authData, login } = useAuthStore();
@@ -38,6 +39,7 @@ function App() {
: <> : <>
<Route element={<Navigate to={PageRouting["HOME"].path} />} path="*" /> <Route element={<Navigate to={PageRouting["HOME"].path} />} path="*" />
<Route element={<HomePage />} path={PageRouting["HOME"].path} /> <Route element={<HomePage />} path={PageRouting["HOME"].path} />
<Route element={<ScheduleMainPage />} path={PageRouting["SCHEDULES"].path} />
</> </>
} }
</Route> </Route>

View File

@@ -120,7 +120,10 @@
} }
html, body, #root { html, body, #root {
height: 100%; width: 100%;
height: 100%;
min-width: 1280px;
min-height: 720px;
} }
/* Chrome, Safari, Edge */ /* Chrome, Safari, Edge */

View File

@@ -1,6 +1,6 @@
export const HomePage = () => { export const HomePage = () => {
return ( return (
<div> <div className="w-full h-full flex flex-column">
HomePage HomePage
</div> </div>
) )