mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
Create DEMO_landing-github-star-button.tsx
This commit is contained in:
33
website/src/refine-theme/DEMO_landing-github-star-button.tsx
Normal file
33
website/src/refine-theme/DEMO_landing-github-star-button.tsx
Normal file
@@ -0,0 +1,33 @@
|
||||
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>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user