enhance: setup screen redirect to hub (#5061)

This commit is contained in:
Faisal Amir 2025-05-22 11:55:34 +07:00 committed by GitHub
parent 434abaaca6
commit dde4e97d8b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,11 +30,13 @@ function SetupScreen() {
<div className="flex gap-4 flex-col"> <div className="flex gap-4 flex-col">
<Card <Card
header={ header={
<div> <Link to={route.hub}>
<h1 className="text-main-view-fg font-medium text-base"> <div>
Setup Local Model <h1 className="text-main-view-fg font-medium text-base">
</h1> Set up local model
</div> </h1>
</div>
</Link>
} }
></Card> ></Card>
<Card <Card
@ -49,7 +51,7 @@ function SetupScreen() {
}} }}
> >
<h1 className="text-main-view-fg font-medium text-base"> <h1 className="text-main-view-fg font-medium text-base">
Setup Remote Provider Set up remote provider
</h1> </h1>
</Link> </Link>
} }