diff --git a/index.html b/index.html index 42ef759..3a53423 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ - Zikai · 作品集 + Zikai
diff --git a/src/App.vue b/src/App.vue index 2531440..5605156 100644 --- a/src/App.vue +++ b/src/App.vue @@ -10,8 +10,6 @@ import LanguageSwitcher from './components/LanguageSwitcher.vue'
Z {{ $t('app.title') }} - · - {{ $t('app.subtitle') }}
@@ -73,14 +71,6 @@ import LanguageSwitcher from './components/LanguageSwitcher.vue' font-size: 0.95rem; font-weight: 700; } -.brand__sep { - color: var(--text-tertiary); -} -.brand__sub { - color: var(--text-secondary); - font-weight: 400; - font-size: 0.92rem; -} .main { flex: 1; diff --git a/src/i18n/locales/en.js b/src/i18n/locales/en.js index 3d12065..0a08e8a 100644 --- a/src/i18n/locales/en.js +++ b/src/i18n/locales/en.js @@ -3,7 +3,6 @@ export default { app: { title: 'Zikai', - subtitle: 'Portfolio', nav: { projects: 'Projects', language: 'Language' diff --git a/src/i18n/locales/zh-CN.js b/src/i18n/locales/zh-CN.js index 1ed1b80..1ddbcd3 100644 --- a/src/i18n/locales/zh-CN.js +++ b/src/i18n/locales/zh-CN.js @@ -2,7 +2,6 @@ export default { app: { title: 'Zikai', - subtitle: '作品集', nav: { projects: '项目', language: '语言' diff --git a/src/modules/mobile-game/components/HeroSection.vue b/src/modules/mobile-game/components/HeroSection.vue index ff80433..c4ea0bc 100644 --- a/src/modules/mobile-game/components/HeroSection.vue +++ b/src/modules/mobile-game/components/HeroSection.vue @@ -7,8 +7,7 @@ const { locale } = useI18n({ useScope: 'global' }) const meta = { course: { zh: '迈阿密大学 · 毕设 448 / 449', en: 'Miami University · Capstone 448 / 449' }, stack: { zh: 'Unity · C# · WebGL · Android · PHP', en: 'Unity · C# · WebGL · Android · PHP' }, - period: '2022', - role: { zh: '主开发', en: 'Lead Developer' } + period: '2022' } @@ -35,10 +34,6 @@ const meta = { {{ locale === 'zh-CN' ? '时间' : 'Period' }} {{ meta.period }} -
- {{ locale === 'zh-CN' ? '角色' : 'Role' }} - {{ locale === 'zh-CN' ? meta.role.zh : meta.role.en }} -
diff --git a/src/modules/mobile-game/components/TeamCard.vue b/src/modules/mobile-game/components/TeamCard.vue index 867a090..c64d22a 100644 --- a/src/modules/mobile-game/components/TeamCard.vue +++ b/src/modules/mobile-game/components/TeamCard.vue @@ -1,9 +1,5 @@