From d6d0d5cbe519ca5a62e67247572b30fab4134b44 Mon Sep 17 00:00:00 2001 From: JK Date: Thu, 15 Jan 2026 18:23:47 +0900 Subject: [PATCH 1/2] =?UTF-8?q?feat(src/components):=20QueryPie=202019=20?= =?UTF-8?q?=EB=A1=9C=EA=B3=A0=20SVG=20=EC=BB=B4=ED=8F=AC=EB=84=8C=ED=8A=B8?= =?UTF-8?q?=EB=A5=BC=20=EC=B6=94=EA=B0=80=ED=95=A9=EB=8B=88=EB=8B=A4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - QueryPie2019 SVG 컴포넌트를 추가합니다. - QueryPieLogo 컴포넌트에서 기존 아이콘+텍스트 대신 QueryPie2019 SVG를 사용합니다. - ACP 텍스트는 기존대로 유지합니다. Co-Authored-By: Claude Opus 4.5 --- src/components/querypie-logo.tsx | 29 ++++++++++++++++++++++------- 1 file changed, 22 insertions(+), 7 deletions(-) diff --git a/src/components/querypie-logo.tsx b/src/components/querypie-logo.tsx index 42b3e198..c5590fef 100644 --- a/src/components/querypie-logo.tsx +++ b/src/components/querypie-logo.tsx @@ -1,5 +1,24 @@ import React from 'react'; +/** + * QueryPie 2019 Logo SVG Component + */ +export function QueryPie2019({ width = 284, height = 60, ...props }: React.SVGProps & { width?: number; height?: number }) { + return ( + + + + + + + + + + + + ); +} + /** * QueryPieLogo HTML structure as string * Used for DOM manipulation scenarios (e.g., Redoc logo replacement) @@ -26,13 +45,9 @@ export const QUERYPIE_LOGO_HTML = ` */ export function QueryPieLogo() { return ( -
-
- QueryPie Logo -
- QueryPie ACP -
-
+
+ + ACP
); } From 03c7b257bdc35e7094c9aa5880c578b4f70d636c Mon Sep 17 00:00:00 2001 From: JK Date: Thu, 15 Jan 2026 18:29:35 +0900 Subject: [PATCH 2/2] =?UTF-8?q?style(src/components):=20QueryPie=20?= =?UTF-8?q?=EB=A1=9C=EA=B3=A0=20=ED=81=AC=EA=B8=B0=EC=99=80=20=EC=9C=84?= =?UTF-8?q?=EC=B9=98=EB=A5=BC=20=EC=A1=B0=EC=A0=95=ED=95=A9=EB=8B=88?= =?UTF-8?q?=EB=8B=A4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 로고 크기를 85x18로 조정하여 원본 비율을 유지합니다. - 로고 위치를 2px 아래로 조정합니다. Co-Authored-By: Claude Opus 4.5 --- src/components/querypie-logo.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/querypie-logo.tsx b/src/components/querypie-logo.tsx index c5590fef..b38aaf24 100644 --- a/src/components/querypie-logo.tsx +++ b/src/components/querypie-logo.tsx @@ -46,7 +46,7 @@ export const QUERYPIE_LOGO_HTML = ` export function QueryPieLogo() { return (
- + ACP
);