Add github button (#577)

This commit is contained in:
Salih Altun
2024-07-10 23:21:30 +03:00
committed by GitHub
parent 0ddda3f481
commit bae1a93ca6
3 changed files with 29 additions and 8 deletions

View File

@@ -34,6 +34,7 @@
"posthog-js": "^1.138.0", "posthog-js": "^1.138.0",
"react": "^18.2.0", "react": "^18.2.0",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"react-github-btn": "^1.4.0",
"react-hook-form": "^7.51.1", "react-hook-form": "^7.51.1",
"react-router-dom": "^6.22.3", "react-router-dom": "^6.22.3",
"serve-handler": "^6.1.5", "serve-handler": "^6.1.5",
@@ -3791,6 +3792,11 @@
"url": "https://github.com/sponsors/sindresorhus" "url": "https://github.com/sponsors/sindresorhus"
} }
}, },
"node_modules/github-buttons": {
"version": "2.28.0",
"resolved": "https://registry.npmjs.org/github-buttons/-/github-buttons-2.28.0.tgz",
"integrity": "sha512-KsCbYiA+MiHO3ytzdGvGt/GNde4GfG9BrrLxxc+ut2snBF9IAjrn2F5mNgHHEXdG/CfFIHOMV8Uxy4LNhxZwUA=="
},
"node_modules/glob": { "node_modules/glob": {
"version": "7.2.3", "version": "7.2.3",
"resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
@@ -5245,6 +5251,17 @@
"react": "^18.2.0" "react": "^18.2.0"
} }
}, },
"node_modules/react-github-btn": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/react-github-btn/-/react-github-btn-1.4.0.tgz",
"integrity": "sha512-lV4FYClAfjWnBfv0iNlJUGhamDgIq6TayD0kPZED6VzHWdpcHmPfsYOZ/CFwLfPv4Zp+F4m8QKTj0oy2HjiGXg==",
"dependencies": {
"github-buttons": "^2.22.0"
},
"peerDependencies": {
"react": ">=16.3.0"
}
},
"node_modules/react-hook-form": { "node_modules/react-hook-form": {
"version": "7.51.1", "version": "7.51.1",
"resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.51.1.tgz", "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.51.1.tgz",

View File

@@ -42,6 +42,7 @@
"posthog-js": "^1.138.0", "posthog-js": "^1.138.0",
"react": "^18.2.0", "react": "^18.2.0",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"react-github-btn": "^1.4.0",
"react-hook-form": "^7.51.1", "react-hook-form": "^7.51.1",
"react-router-dom": "^6.22.3", "react-router-dom": "^6.22.3",
"serve-handler": "^6.1.5", "serve-handler": "^6.1.5",

View File

@@ -1,11 +1,12 @@
import { Link, Outlet } from "react-router-dom"; import { Link, Outlet } from "react-router-dom";
import { Toaster } from "@/components/ui/toaster"; import { Toaster } from "@/components/ui/toaster";
import { SideNav } from "./SideNav"; import { SideNav } from "./SideNav";
import { DiscordLogoIcon, GitHubLogoIcon } from "@radix-ui/react-icons"; import { DiscordLogoIcon } from "@radix-ui/react-icons";
import { Logo } from "@/components/Logo"; import { Logo } from "@/components/Logo";
import { Profile } from "./Profile"; import { Profile } from "./Profile";
import { useContext } from "react"; import { useContext } from "react";
import { UserContext } from "@/store/UserContext"; import { UserContext } from "@/store/UserContext";
import GitHubButton from "react-github-btn";
function RootLayout() { function RootLayout() {
const user = useContext(UserContext); const user = useContext(UserContext);
@@ -32,15 +33,17 @@ function RootLayout() {
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
> >
<DiscordLogoIcon className="w-6 h-6" /> <DiscordLogoIcon className="w-7 h-7" />
</Link> </Link>
<Link <GitHubButton
to="https://github.com/Skyvern-AI/skyvern" href="https://github.com/skyvern-ai/skyvern"
target="_blank" data-color-scheme="no-preference: dark; light: dark; dark: dark;"
rel="noopener noreferrer" data-size="large"
data-show-count="true"
aria-label="Star skyvern-ai/skyvern on GitHub"
> >
<GitHubLogoIcon className="w-6 h-6" /> Star
</Link> </GitHubButton>
</div> </div>
<main className="pl-72 pb-4"> <main className="pl-72 pb-4">
<Outlet /> <Outlet />