From 8eb1bcb12e698044a4531bd72e0ddb62a4da8fc0 Mon Sep 17 00:00:00 2001 From: king Date: Mon, 25 May 2026 21:00:00 +0900 Subject: [PATCH] Update card titles and descriptions on portal landing page --- app/main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/main.py b/app/main.py index d6419d6..fc7d062 100644 --- a/app/main.py +++ b/app/main.py @@ -157,14 +157,14 @@ async def home(request: Request) -> HTMLResponse: menu_items = [ { - "title": "CS 발주 업무", - "description": "CS 발주 업무 페이지로 이동", + "title": "CS, 발주, 반품, 코드관리", + "description": "CS, 발주, 반품, 코드관리 페이지로 이동", "url": env("CS_ORDER_URL", "/corm/"), "health_url": "/corm/health/db", }, { - "title": "고객 주문리스트 프로그램", - "description": "고객 주문리스트 프로그램으로 이동", + "title": "고객 주문 데이터베이스", + "description": "고객 주문 데이터베이스 페이지로 이동", "url": env("CUSTOMER_ORDER_LIST_URL", "/orderlist/"), "health_url": "/orderlist/health/db", },