Create DEMO_landing-github-star-button.tsx

This commit is contained in:
Stefan Pejcic
2024-11-08 17:45:56 +01:00
committed by GitHub
parent 11969c4928
commit aa028a8718

View 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>
);
};