mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
- Add 1.0 blogpost - Update font to `Public Sans` since it has all weights and offers better readability - Various layout/style fixes - Disable kotlin draft release job --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andrew Dryga <andrew@dryga.com>
16 lines
419 B
TypeScript
16 lines
419 B
TypeScript
"use client";
|
|
import Link from "next/link";
|
|
|
|
export default function DeployButton() {
|
|
return (
|
|
<Link href="/docs/deploy">
|
|
<button
|
|
type="button"
|
|
className="text-white font-bold tracking-tight rounded-md duration-0 hover:scale-105 transition transform shadow-lg text-sm px-5 py-2.5 bg-gradient-to-br from-accent-700 to-accent-600"
|
|
>
|
|
Deploy now
|
|
</button>
|
|
</Link>
|
|
);
|
|
}
|