Change "sign up" to "explore" (#357)

Co-authored-by: Dessalines <tyhou13@gmx.com>
This commit is contained in:
Nutomic 2024-09-09 21:27:28 +02:00 committed by GitHub
parent d529be5a5b
commit 67b4f84b16
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -166,9 +166,9 @@ class InstanceCard extends Component<InstanceCardProps, InstanceCardState> {
<div className="flex flex-row flex-wrap justify-between gap-2"> <div className="flex flex-row flex-wrap justify-between gap-2">
<a <a
className="btn btn-primary text-white max-md:btn-block bg-gradient-to-r from-[#69D066] to-[#03A80E] normal-case" className="btn btn-primary text-white max-md:btn-block bg-gradient-to-r from-[#69D066] to-[#03A80E] normal-case"
href={`${buildUrl(domain)}/signup`} href={`${buildUrl(domain)}`}
> >
{i18n.t("sign_up")} {i18n.t("explore")}
</a> </a>
<button <button
className="btn btn-secondary btn-outline text-white max-md:btn-block normal-case" className="btn btn-secondary btn-outline text-white max-md:btn-block normal-case"
@ -321,9 +321,9 @@ export const DetailsModal = ({
)} )}
<a <a
className="btn btn-primary btn-block text-white normal-case" className="btn btn-primary btn-block text-white normal-case"
href={`${buildUrl(domain)}/signup`} href={`${buildUrl(domain)}`}
> >
{i18n.t("sign_up")} {i18n.t("explore")}
</a> </a>
</div> </div>
</dialog> </dialog>