refactor: 가격표 섹션 히어로 아래로 이동 및 탭 스타일 통일

- 가격표 섹션을 페이지 하단에서 히어로 바로 아래로 이동
- 상단 패딩 축소 (py-24 → pt-12 pb-24)
- 서브탭(서울/글로벌 타입) 스타일을 메인탭과 동일하게 통일
- Pages Functions API 프록시 추가 (functions/)
- wrangler.toml 및 TypeScript 설정 추가

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
kappa
2026-01-23 09:19:01 +09:00
parent 570ae8f49b
commit d08d1895d0
15 changed files with 1056 additions and 298 deletions

View File

@@ -0,0 +1,25 @@
/**
* Instances query endpoint
* GET /api/instances → Worker GET /instances
*/
import { type PagesFunction } from '@cloudflare/workers-types';
import {
Env,
createCorsPreflightResponse,
proxyToWorker,
buildQueryString,
} from '../_shared/proxy';
export const onRequestGet: PagesFunction<Env> = async ({ request, env }) => {
const url = new URL(request.url);
const queryString = buildQueryString(url.searchParams);
return proxyToWorker(env, `/instances${queryString}`, {
method: 'GET',
});
};
export const onRequestOptions: PagesFunction<Env> = async () => {
return createCorsPreflightResponse();
};