style: Developer Portal 헤더를 본문 container 정렬 기준에 맞추어 레이아웃 수정 및 버전 뱃지 추가

This commit is contained in:
jade
2026-07-13 13:31:17 +09:00
parent a6f00d506b
commit 8ac1560833
2 changed files with 13 additions and 8 deletions

View File

@@ -1,11 +1,13 @@
spring.application.name=axhub-admin spring.application.name=axhub-admin
# Gateway Fallback Routing (For unregistered tools) # Gateway Fallback Routing (For unregistered tools)
mcp.gateway.fallback.routes.email=http://tool-email:8083
mcp.gateway.fallback.routes.sms=http://tool-sms:8082 mcp.gateway.fallback.routes.sms=http://tool-sms:8082
mcp.gateway.fallback.routes.hr=http://tool-hr:8086 mcp.gateway.fallback.routes.email=http://tool-email:8083
mcp.gateway.fallback.routes.payment=http://tool-payment:8085
mcp.gateway.fallback.default-url=http://tool-other:8084 mcp.gateway.fallback.default-url=http://tool-other:8084
mcp.gateway.fallback.routes.payment=http://tool-payment:8085
mcp.gateway.fallback.routes.hr=http://tool-hr:8086
server.port=8081 server.port=8081
server.http2.enabled=true server.http2.enabled=true

View File

@@ -361,20 +361,23 @@
</head> </head>
<body> <body>
<header style="border-bottom: 1px solid #27272a; background: rgba(9,9,11,0.85); backdrop-filter: blur(16px); position: sticky; top: 0; z-index: 1050; margin-bottom: 2rem;"> <header style="border-bottom: 1px solid #27272a; background: rgba(9,9,11,0.85); backdrop-filter: blur(16px); position: sticky; top: 0; z-index: 1050; margin-bottom: 2rem; height: 56px;">
<div style="max-width: 1000px; width: 95%; margin: 0 auto; height: 56px; display: flex; align-items: center; justify-content: space-between;"> <div class="container d-flex align-items-center justify-content-between h-100">
<div style="display: flex; align-items: center; gap: 1.25rem;"> <div class="d-flex align-items-center" style="gap: 1.25rem;">
<a href="/index.html" style="display: flex; align-items: center; text-decoration: none;"> <a href="/index.html" class="d-flex align-items-center text-decoration-none">
<div style="width: 8px; height: 8px; border-radius: 50%; margin-right: 0.5rem; background:#3b82f6; box-shadow: 0 0 8px rgba(59,130,246,0.8);"></div> <div style="width: 8px; height: 8px; border-radius: 50%; margin-right: 0.5rem; background:#3b82f6; box-shadow: 0 0 8px rgba(59,130,246,0.8);"></div>
<span style="font-weight: 600; letter-spacing: -0.025em; font-size: 0.875rem; color:#f4f4f5;">AXHUB Gateway</span> <span style="font-weight: 600; letter-spacing: -0.025em; font-size: 0.875rem; color:#f4f4f5;">AXHUB Gateway</span>
</a> </a>
<div style="height: 16px; width: 1px; background:#27272a;"></div> <div style="height: 16px; width: 1px; background:#27272a;"></div>
<nav style="display: flex; gap: 1.25rem; font-size: 13px; font-weight: 500;"> <nav class="d-flex" style="gap: 1.25rem; font-size: 13px; font-weight: 500;">
<a href="/admin/scaffold.html" style="color:#ffffff; font-weight: 600; text-decoration: none;">Scaffold</a> <a href="/admin/scaffold.html" style="color:#ffffff; font-weight: 600; text-decoration: none;">Scaffold</a>
<a href="/catalog.html" style="color:#a1a1aa; text-decoration: none; transition: color 0.15s;" onmouseover="this.style.color='#ffffff'" onmouseout="this.style.color='#a1a1aa'">Catalog</a> <a href="/catalog.html" style="color:#a1a1aa; text-decoration: none; transition: color 0.15s;" onmouseover="this.style.color='#ffffff'" onmouseout="this.style.color='#a1a1aa'">Catalog</a>
<a href="/playground.html" style="color:#a1a1aa; text-decoration: none; transition: color 0.15s;" onmouseover="this.style.color='#ffffff'" onmouseout="this.style.color='#a1a1aa'">Playground</a> <a href="/playground.html" style="color:#a1a1aa; text-decoration: none; transition: color 0.15s;" onmouseover="this.style.color='#ffffff'" onmouseout="this.style.color='#a1a1aa'">Playground</a>
</nav> </nav>
</div> </div>
<div class="d-flex align-items-center">
<span style="font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.25rem 0.5rem; border-radius: 0.25rem; font-weight: bold; background:rgba(59,130,246,0.1); color:#60a5fa; border:1px solid rgba(59,130,246,0.2);">v0.0.1</span>
</div>
</div> </div>
</header> </header>