免费与菜单提示文字
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
@@ -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"/>
|
||||||
|
|||||||
@@ -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>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user