diff --git a/docs/components/banner.tsx b/docs/components/banner.tsx
index 96afddea..24fa684d 100644
--- a/docs/components/banner.tsx
+++ b/docs/components/banner.tsx
@@ -17,7 +17,7 @@ export function BetaNotice() {
href="https://github.com/better-auth/better-auth/issues"
>
{" "}
- Github.
+ GitHub.
{" "}
);
diff --git a/docs/components/features.tsx b/docs/components/features.tsx
index ec93391c..70d1954b 100644
--- a/docs/components/features.tsx
+++ b/docs/components/features.tsx
@@ -90,7 +90,7 @@ export default function Features({ stars }: { stars: string | null }) {
- Allow users to sign in with their accounts, including Github,
+ Allow users to sign in with their accounts, including GitHub,
Google, Discord, Twitter, and more.{" "}
Learn more
diff --git a/docs/components/sidebar-content.tsx b/docs/components/sidebar-content.tsx
index daa022fb..26368b26 100644
--- a/docs/components/sidebar-content.tsx
+++ b/docs/components/sidebar-content.tsx
@@ -420,7 +420,7 @@ export const contents: Content[] = [
),
},
{
- title: "Github",
+ title: "GitHub",
href: "/docs/authentication/github",
icon: () => (
- Continue with Github
+ Continue with GitHub
diff --git a/packages/better-auth/src/social-providers/github.ts b/packages/better-auth/src/social-providers/github.ts
index 8fe19fba..7d30e8c2 100644
--- a/packages/better-auth/src/social-providers/github.ts
+++ b/packages/better-auth/src/social-providers/github.ts
@@ -56,7 +56,7 @@ export const github = (options: GithubOptions) => {
const tokenEndpoint = "https://github.com/login/oauth/access_token";
return {
id: "github",
- name: "Github",
+ name: "GitHub",
createAuthorizationURL({ state, scopes, codeVerifier, redirectURI }) {
const _scopes = options.scope || scopes || ["user:email"];
return createAuthorizationURL({