mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
34 lines
1.2 KiB
TypeScript
34 lines
1.2 KiB
TypeScript
import clsx from "clsx";
|
|
import React from "react";
|
|
export const LandingGithubStarButton = () => {
|
|
|
|
return (
|
|
<a
|
|
href="/demo"
|
|
className={clsx(
|
|
"self-start",
|
|
"rounded-3xl",
|
|
"!text-gray-0 dark:!text-gray-900",
|
|
"bg-refine-blue dark:bg-refine-cyan-alt",
|
|
"transition-[filter]",
|
|
"duration-150",
|
|
"ease-in-out",
|
|
"hover:brightness-110",
|
|
"py-2",
|
|
"pl-7 pr-8",
|
|
"landing-md:px-8",
|
|
"landing-lg:pl-7 landing-lg:pr-8",
|
|
"flex",
|
|
"items-center",
|
|
"justify-center",
|
|
"gap-2",
|
|
"hover:!no-underline",
|
|
)}
|
|
>
|
|
<span className={clsx("text-base", "font-semibold")}>
|
|
Try Demo
|
|
</span>
|
|
</a>
|
|
);
|
|
};
|