부동산 정보 페이지 추가

This commit is contained in:
2026-03-16 02:10:45 +09:00
parent c6ac849a25
commit 1af16dde47
7 changed files with 4369 additions and 6 deletions

View File

@@ -4,6 +4,7 @@ import {
IconBlog,
IconLotto,
IconStock,
IconBuilding,
IconTravel,
IconLab,
IconTodo,
@@ -15,6 +16,8 @@ const Lotto = lazy(() => import('./pages/lotto/Lotto'));
const Travel = lazy(() => import('./pages/travel/Travel'));
const Stock = lazy(() => import('./pages/stock/Stock'));
const StockTrade = lazy(() => import('./pages/stock/StockTrade'));
const RealEstate = lazy(() => import('./pages/realestate/RealEstate'));
const Subscription = lazy(() => import('./pages/subscription/Subscription'));
const EffectLab = lazy(() => import('./pages/effect-lab/EffectLab'));
const Todo = lazy(() => import('./pages/todo/Todo'));
@@ -55,6 +58,15 @@ export const navLinks = [
icon: <IconStock />,
accent: '#60a5fa',
},
{
id: 'realestate',
label: 'Realestate',
path: '/realestate',
subtitle: '부동산',
description: '청약 자격 비교, 일정 관리, 관심 단지 정보를 관리하는 공간',
icon: <IconBuilding />,
accent: '#f43f5e',
},
{
id: 'travel',
label: 'Travel',
@@ -105,6 +117,14 @@ export const appRoutes = [
path: 'stock/trade',
element: <StockTrade />,
},
{
path: 'realestate',
element: <Subscription />,
},
{
path: 'realestate/property',
element: <RealEstate />,
},
{
path: 'travel',
element: <Travel />,