1 Commits

Author SHA1 Message Date
a0b0956677 免费与菜单提示文字 2026-04-21 16:19:11 +08:00
3 changed files with 17 additions and 7 deletions

View File

@@ -237,7 +237,7 @@ export default function CustomPage() {
<section className="relative rounded-lg overflow-hidden h-48 lg:h-56">
<Image
src={group}
alt="免费试用背景"
alt="立即试用背景"
fill
className="object-cover"
priority
@@ -251,9 +251,9 @@ export default function CustomPage() {
className={merge(
'bg-blue-600 hover:bg-blue-700 text-white px-8 py-3 rounded-md whitespace-nowrap',
)}
onClick={() => router.push('/login')}
onClick={() => router.push('/product')}
>
</Button>
</div>
</div>

View File

@@ -103,9 +103,19 @@ export function Header() {
<div className="flex-auto flex items-center gap-2">
<Button
theme="ghost"
className="w-9 h-9 ml-4 md:ml-0"
className="h-9 ml-4 md:ml-0"
onClick={toggleNavbar}>
{navbar ? <PanelLeftCloseIcon/> : <PanelLeftOpenIcon/>}
{navbar ? (
<>
<PanelLeftCloseIcon/>
<span className="text-foreground/90"></span>
</>
) : (
<>
<PanelLeftOpenIcon/>
<span className="text-foreground/90"></span>
</>
)}
</Button>
<span className="max-md:hidden"></span>
<div className="max-md:hidden h-5 w-px bg-gray-300 mx-2"/>

View File

@@ -26,7 +26,7 @@ function Resolved(props: {
router.push(profile ? '/admin/purchase' : '/product')
}}
>
</button>
)
}
@@ -42,7 +42,7 @@ function Pending(props: {
router.push('/product')
}}
>
</button>
)
}