mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
18 lines
495 B
TypeScript
18 lines
495 B
TypeScript
import clsx from "clsx";
|
|
import React from "react";
|
|
export const LandingGithubStarButton = () => {
|
|
|
|
return (
|
|
<a
|
|
href="https://my.openpanel.com/clientarea.php"
|
|
className={clsx(
|
|
"hover:!no-underline",
|
|
)}
|
|
>
|
|
<span className={clsx("text-base", "font-semibold")}>
|
|
Account Login
|
|
</span>
|
|
</a>
|
|
);
|
|
};
|