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

View File

@@ -103,9 +103,19 @@ export function Header() {
<div className="flex-auto flex items-center gap-2"> <div className="flex-auto flex items-center gap-2">
<Button <Button
theme="ghost" theme="ghost"
className="w-9 h-9 ml-4 md:ml-0" className="h-9 ml-4 md:ml-0"
onClick={toggleNavbar}> onClick={toggleNavbar}>
{navbar ? <PanelLeftCloseIcon/> : <PanelLeftOpenIcon/>} {navbar ? (
<>
<PanelLeftCloseIcon/>
<span className="text-foreground/90"></span>
</>
) : (
<>
<PanelLeftOpenIcon/>
<span className="text-foreground/90"></span>
</>
)}
</Button> </Button>
<span className="max-md:hidden"></span> <span className="max-md:hidden"></span>
<div className="max-md:hidden h-5 w-px bg-gray-300 mx-2"/> <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') router.push(profile ? '/admin/purchase' : '/product')
}} }}
> >
</button> </button>
) )
} }
@@ -42,7 +42,7 @@ function Pending(props: {
router.push('/product') router.push('/product')
}} }}
> >
</button> </button>
) )
} }