diff --git a/components/Footer.vue b/components/Footer.vue index 1e2e0f9..6cba6ea 100644 --- a/components/Footer.vue +++ b/components/Footer.vue @@ -17,13 +17,11 @@ const footer = useFoot() - + {{ $t(item.link.name) }} - + - - {{ $t('wechat') }} - + @@ -45,6 +43,7 @@ const footer = useFoot() {{ $t(footer.release) }}

+ {{ $t(record) }}

diff --git a/config/pages/release/use-article.ts b/config/pages/release/use-article.ts new file mode 100644 index 0000000..7c3bc4b --- /dev/null +++ b/config/pages/release/use-article.ts @@ -0,0 +1,36 @@ +export function useArticle() { + return [ + { + title: 'Decor', + subtitle: 'Fine Art, Dining', + img: '/imgs/Home-Stories/Circulus.jpg', + tags: ['Web 3.0'], + href: '/release/bar-symphony', + createTime: '2023/6/5', + }, + { + title: 'Decor', + subtitle: 'Fine Art, Dining', + img: '/imgs/Home-Stories/Circulus.jpg', + tags: ['Web 3.0', 'Digital Twins'], + href: '#', + createTime: '2023/6/5', + }, + { + title: 'Decor', + subtitle: 'Fine Art, Dining', + img: '/imgs/Home-Stories/Circulus.jpg', + tags: ['Web 3.0', 'Digital Twins'], + href: '#', + createTime: '2023/6/5', + }, + { + title: 'Decor', + subtitle: 'Fine Art, Dining', + img: '/imgs/Home-Stories/Circulus.jpg', + tags: ['Web 3.0', 'Digital Twins'], + href: '#', + createTime: '2023/6/5', + }, + ] +} diff --git a/config/pages/release/use-tag.ts b/config/pages/release/use-tag.ts new file mode 100644 index 0000000..88c1cb3 --- /dev/null +++ b/config/pages/release/use-tag.ts @@ -0,0 +1,20 @@ +export function useTag() { + return [ + { + label: 'nav.solutions.child.land.service[0]', + value: 'Web 3.0', + }, + { + label: 'nav.solutions.child.land.service[1]', + value: 'Digital Twins', + }, + { + label: 'nav.solutions.child.land.service[2]', + value: 'Mixed Reality', + }, + { + label: 'nav.solutions.child.land.service[3]', + value: 'AIGC', + }, + ] +} diff --git a/config/use-foot.ts b/config/use-foot.ts index da54f16..4db44f6 100644 --- a/config/use-foot.ts +++ b/config/use-foot.ts @@ -59,6 +59,15 @@ export function useFoot() { name: 'foot.links[2].link[0]', href: '#', }, + img: '/wechat.png', + }, + { + icon: 'i-material-symbols-shelf-auto-hide', + link: { + name: 'foot.links[2].link[2]', + href: '#', + }, + img: '/xiaohongshu.png', }, { icon: 'i-ri-twitter-fill', @@ -67,12 +76,6 @@ export function useFoot() { href: 'https://twitter.com/Topverse_Studio', }, }, - { - link: { - name: 'foot.links[2].link[2]', - href: '#', - }, - }, ], }, ], diff --git a/config/use-nav.ts b/config/use-nav.ts index bf95b89..faa5a20 100644 --- a/config/use-nav.ts +++ b/config/use-nav.ts @@ -39,6 +39,13 @@ export function useNav(): NavMenu[] { icon: 'i-tabler-3d-cube-sphere', iconColor: 'amber', }, + { + title: 'nav.solutions.child.land.service[3]', + subtitle: 'nav.solutions.child.land.description[3]', + href: '/solutions', + icon: 'i-iconoir-brain-electricity', + iconColor: 'amber', + }, ], }, { diff --git a/locales/en-UK.json b/locales/en-UK.json index 2dba460..a62f6df 100644 --- a/locales/en-UK.json +++ b/locales/en-UK.json @@ -15,7 +15,7 @@ "t": "Solutions", "child": { "land": { - "service": ["Web 3.0", "Digital Twins", "Mixed Reality"], + "service": ["Web 3.0", "Digital Twins", "Mixed Reality", "AIGC"], "description": ["The quick brown fox jumps over the lazy dog.", "IRL World in Digital", "Immersive Creations"] } } @@ -175,7 +175,7 @@ "foot": { "copyright": "TOPVERSE LAB © Copyright 2019-2023 All rights reserved", "release": "London I Beijing I Shanghai I Hongkong", - "record": ["沪ICP备2023010651号-1", ""], + "record": ["沪ICP备2023010651号-1", "沪ICP备2023010651号-1"], "links": [ { "group": "PRODUCT", @@ -193,5 +193,6 @@ }, "wechat": "微信公众号:ttsetset", "waiting": "waiting...", - "notfound": "not found" + "notfound": "not found", + "copylink": "Copy share link" } diff --git a/locales/zh-CN.json b/locales/zh-CN.json index 16acc96..2e1f3c3 100644 --- a/locales/zh-CN.json +++ b/locales/zh-CN.json @@ -15,7 +15,7 @@ "t": "解决方案", "child": { "land": { - "service": ["互联网 3.0", "数字孪生", "混合现实"], + "service": ["互联网 3.0", "数字孪生", "混合现实", "生成式人工智能"], "description": ["区块链及元宇宙空间板块", "智慧城市及工业元宇宙解决方案", "虚拟、混合现实内容开发"] } } @@ -170,7 +170,7 @@ "foot": { "copyright": "TOPVERSE LAB 奇点拓界 © 版权所有 2019-2023 All rights reserved", "release": "伦敦 I 北京 I 上海 I 香港", - "record": ["沪ICP备2023010651号-1", ""], + "record": ["沪ICP备2023010651号-1", "沪ICP备2023010651号-1"], "links": [ { "group": "产品", @@ -188,5 +188,6 @@ }, "wechat": "微信公众号", "waiting": "建设中...", - "notfound": "未知区域" + "notfound": "未知区域", + "copylink": "复制分享链接" } diff --git a/pages/release/index.vue b/pages/release/index.vue index 51e3ab2..39f9099 100644 --- a/pages/release/index.vue +++ b/pages/release/index.vue @@ -1,42 +1,21 @@ -