라우팅 추가 및 CSS 구성

- 개인 블로그
 - 로또
 - 여행

로고 이미지 추가 및 변경
This commit is contained in:
2026-01-18 10:50:45 +09:00
parent cb4978fe4a
commit 8462557ee3
28 changed files with 5727 additions and 674 deletions

14
src/Router.jsx Normal file
View File

@@ -0,0 +1,14 @@
import React from 'react';
import { createBrowserRouter } from 'react-router-dom';
import App from './App';
import { appRoutes } from './routes.jsx';
const router = createBrowserRouter([
{
path: '/',
element: <App />,
children: appRoutes,
},
]);
export default router;