mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
Update landing-github-star-button.tsx
This commit is contained in:
parent
a40ad16e6f
commit
32cce3dd74
@ -3,25 +3,31 @@ import React from "react";
|
||||
export const LandingGithubStarButton = () => {
|
||||
|
||||
return (
|
||||
<a
|
||||
href="/demo"
|
||||
rel="noreferrer"
|
||||
className={clsx(
|
||||
"flex gap-2 items-center",
|
||||
"font-normal",
|
||||
"text-sm leading-6",
|
||||
"text-gray-500 dark:text-gray-400",
|
||||
"hover:text-gray-400 dark:hover:text-gray-300",
|
||||
"hover:no-underline",
|
||||
"transition-colors",
|
||||
"duration-200",
|
||||
"ease-in-out",
|
||||
)}
|
||||
>
|
||||
|
||||
<div className={clsx("flex items-center", "w-10 h-6")}>
|
||||
<span>Demo</span>
|
||||
</div>
|
||||
</a>
|
||||
<Link
|
||||
to="https://demo.openpanel.org/openpanel/"
|
||||
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>
|
||||
</Link>
|
||||
);
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user