From 56a1a50312c22a45c3e8041af9d850a6c9b766ef Mon Sep 17 00:00:00 2001 From: clkim Date: Tue, 9 Sep 2025 22:18:10 +0900 Subject: [PATCH] =?UTF-8?q?fix.=20=EC=9E=84=EC=8B=9C=20=EB=8D=B0=EC=9D=B4?= =?UTF-8?q?=ED=84=B0=20=EB=A7=9E=EC=B6=B0=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/app.vue | 17 +- layers/assets/css/theme.css | 49 ++++++ layers/components/atoms/LocaleLink.vue | 15 ++ layers/components/atoms/icons/ArrowDown.vue | 28 +++ layers/components/atoms/icons/LinkOut.vue | 32 ++++ layers/components/atoms/icons/Star.vue | 29 ++++ layers/components/layout/StoveGnb.vue | 2 +- layers/components/layout/default/Header.vue | 180 +++++++------------- layers/components/molecules/Link.vue | 27 +++ layers/components/templates/Background.vue | 30 ++-- layers/components/templates/Description.vue | 27 ++- layers/components/templates/MainTitle.vue | 27 ++- layers/components/templates/VideoPlay.vue | 20 +-- layers/server/api/gameData.get.ts | 52 ------ layers/types/api/gameData.ts | 127 +++++++++++--- layers/utils/dataUtil.ts | 70 +++++++- tailwind.config.ts | 17 ++ tsconfig.json | 2 +- 18 files changed, 492 insertions(+), 259 deletions(-) create mode 100644 layers/assets/css/theme.css create mode 100644 layers/components/atoms/LocaleLink.vue create mode 100644 layers/components/atoms/icons/ArrowDown.vue create mode 100644 layers/components/atoms/icons/LinkOut.vue create mode 100644 layers/components/atoms/icons/Star.vue create mode 100644 layers/components/molecules/Link.vue delete mode 100644 layers/server/api/gameData.get.ts diff --git a/app/app.vue b/app/app.vue index bd7008c..8509d8c 100644 --- a/app/app.vue +++ b/app/app.vue @@ -8,6 +8,10 @@ + + + + diff --git a/layers/components/atoms/icons/ArrowDown.vue b/layers/components/atoms/icons/ArrowDown.vue new file mode 100644 index 0000000..46efed4 --- /dev/null +++ b/layers/components/atoms/icons/ArrowDown.vue @@ -0,0 +1,28 @@ + + + diff --git a/layers/components/atoms/icons/LinkOut.vue b/layers/components/atoms/icons/LinkOut.vue new file mode 100644 index 0000000..947007c --- /dev/null +++ b/layers/components/atoms/icons/LinkOut.vue @@ -0,0 +1,32 @@ + + + diff --git a/layers/components/atoms/icons/Star.vue b/layers/components/atoms/icons/Star.vue new file mode 100644 index 0000000..269d056 --- /dev/null +++ b/layers/components/atoms/icons/Star.vue @@ -0,0 +1,29 @@ + + + diff --git a/layers/components/layout/StoveGnb.vue b/layers/components/layout/StoveGnb.vue index e45a956..0f26fe6 100644 --- a/layers/components/layout/StoveGnb.vue +++ b/layers/components/layout/StoveGnb.vue @@ -1,5 +1,5 @@