diff --git a/app/Sidebar.tsx b/app/Sidebar.tsx index a157f4a..8872cfb 100644 --- a/app/Sidebar.tsx +++ b/app/Sidebar.tsx @@ -6,6 +6,7 @@ import { clsxm } from '@zolplay/utils' import { LocaleSelector } from '~/app/LocaleSelector' import { ThemeSelector } from '~/app/ThemeSelector' import { BrandXIcon } from '~/components/icons/BrandXIcon' +import { ShopIcon } from '~/components/icons/ShopIcon' import { Logo, LogoHelmet } from '~/components/Logo' import { Clock } from '~/components/ui/Clock' import { motion } from 'framer-motion' @@ -29,6 +30,7 @@ const links = [ { href: '/portfolios', label: 'Portfolios', icon: TbCarouselHorizontal }, // { href: '/services', label: 'Services', icon: TbAugmentedReality2 }, { href: '/contact', label: 'Contact', icon: TbMailbox }, + { href: 'https://shop.zolplay.cn', label: 'Shop', icon: ShopIcon }, // { href: '/gallery', label: 'Gallery', icon: TbPhoto }, ] const social = [ diff --git a/components/icons/ShopIcon.tsx b/components/icons/ShopIcon.tsx new file mode 100644 index 0000000..323a19e --- /dev/null +++ b/components/icons/ShopIcon.tsx @@ -0,0 +1,32 @@ +import { clsxm } from '@zolplay/utils' + +export function ShopIcon({ className }: { className?: string }) { + return ( + + + + + + ) +} diff --git a/messages/en.json b/messages/en.json index 0aa098a..44f587c 100644 --- a/messages/en.json +++ b/messages/en.json @@ -8,7 +8,8 @@ "Services": "Services", "Portfolios": "Portfolios", "Contact": "Contact", - "Gallery": "Gallery" + "Gallery": "Gallery", + "Shop": "Shop" }, "Themes": { "Placeholder": "Select a theme", diff --git a/messages/zh-CN.json b/messages/zh-CN.json index 8eae949..2bb9fc0 100644 --- a/messages/zh-CN.json +++ b/messages/zh-CN.json @@ -8,7 +8,8 @@ "Services": "服务提供", "Portfolios": "作品展廊", "Contact": "联系我们", - "Gallery": "图片墙" + "Gallery": "图片墙", + "Shop": "佐玩商城" }, "Themes": { "Placeholder": "选择颜色主题",