From 0a656e071d79c52fc753dc45036d01723230dfe6 Mon Sep 17 00:00:00 2001 From: yeonjulee1005 Date: Sun, 31 Dec 2023 22:42:49 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=9A=97=20develop=20(dewdew)=20version?= =?UTF-8?q?:=201.25.0=20-=20Project=20>=20hhkb=20:=20useHead()=20=EC=84=A4?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- assets/scss/shared/pages/projects.scss | 2 +- locales/en.ts | 4 +++- locales/ko.ts | 4 +++- pages/projects/hhkb.vue | 12 ++++++++++++ 5 files changed, 20 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index db874d4..90bfe09 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ## 안녕하세요. FE 개발자 이연주 입니다. -## Current Version: 1.24.0 +## Current Version: 1.25.0 ## 🖥️ 사용한 스킬은 아래와 같습니다. diff --git a/assets/scss/shared/pages/projects.scss b/assets/scss/shared/pages/projects.scss index d7e1723..24b3841 100644 --- a/assets/scss/shared/pages/projects.scss +++ b/assets/scss/shared/pages/projects.scss @@ -8,7 +8,7 @@ .projects { position: relative; max-width: $space-800; - height: $space-80vh; + height: $space-100vh; margin: 0 auto; overflow: clip; .project-list { diff --git a/locales/en.ts b/locales/en.ts index e1aae2b..348aabe 100644 --- a/locales/en.ts +++ b/locales/en.ts @@ -2,7 +2,8 @@ export default { pageTitle: { yeonju: 'Developer Yeonju', project: 'Project', - colorsTranslate: 'Find my color..', + colorsTranslate: 'Find my color!', + hhkb: 'HHKB Keyboard Modeling', blog: 'Blog', tech: 'Tech Blog', archives: 'Archives' @@ -14,6 +15,7 @@ export default { dewdew: 'Developer Yeonju | {text}', projectDesc: '토이 프로젝트 리스트 입니다.', colorsTranslateDesc: '잊고 지낸 색상코드를 찾아보세요.', + hhkbDesc: 'Spline을 이용한 HHKB 키보드 모델링 입니다.', blogDesc: 'FE개발자 이연주의 블로그 입니다.', techDesc: 'FE개발자 이연주의 개발 블로그 입니다.', archivesDesc: 'FE개발자 이연주의 사진기록 입니다.' diff --git a/locales/ko.ts b/locales/ko.ts index 98fbce8..c9e6282 100644 --- a/locales/ko.ts +++ b/locales/ko.ts @@ -2,7 +2,8 @@ export default { pageTitle: { yeonju: '개발자 이연주', project: '프로젝트', - colorsTranslate: '내 색상 찾아줘..', + colorsTranslate: '내 색상 찾아줘!', + hhkb: 'HHKB 키보드 모델링', blog: '블로그', tech: '테크 블로그', archives: '아카이브' @@ -14,6 +15,7 @@ export default { dewdew: '개발자 이연주 | {text}', projectDesc: '토이 프로젝트 리스트 입니다.', colorsTranslateDesc: '잊고 지낸 색상코드를 찾아보세요.', + hhkbDesc: 'Spline을 이용한 HHKB 키보드 모델링 입니다.', blogDesc: 'FE개발자 이연주의 블로그 입니다.', techDesc: 'FE개발자 이연주의 개발 블로그 입니다.', archivesDesc: 'FE개발자 이연주의 사진기록 입니다.' diff --git a/pages/projects/hhkb.vue b/pages/projects/hhkb.vue index ad1edd3..16efa32 100644 --- a/pages/projects/hhkb.vue +++ b/pages/projects/hhkb.vue @@ -23,6 +23,18 @@ // @ts-ignore import { Application } from '@splinetool/runtime' +const { t } = useLocale() + +useHead({ + title: t('pageTitle.hhkb'), + meta: [ + { property: 'description', content: t('openGraph.hhkbDesc') }, + { property: 'og:title', content: t('openGraph.dewdew', { text: t('pageTitle.hhkb') }) }, + { property: 'og:url', content: 'https://www.dewdew.kr/projects/hhkb/' }, + { property: 'og:description', content: t('openGraph.hhkbDesc') } + ] +}) + const hhkbRef = ref(null) const state = reactive({ From f3e313a36abee8a9fdb6fbb37cee2688c9bf18ea Mon Sep 17 00:00:00 2001 From: yeonjulee1005 Date: Sun, 31 Dec 2023 22:43:03 +0900 Subject: [PATCH 2/2] 1.25.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7de5b51..0793228 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "name": "Dewdew", "email": "yeonju.lee1005@gmail.com" }, - "version": "1.24.0", + "version": "1.25.0", "private": true, "scripts": { "build": "nuxt build",