diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md
index 24d0984dd..286bdcdad 100644
--- a/.github/pull_request_template.md
+++ b/.github/pull_request_template.md
@@ -1,5 +1,5 @@
diff --git a/README.md b/README.md
index be7b4b197..5edd27c99 100644
--- a/README.md
+++ b/README.md
@@ -92,14 +92,14 @@ Check out the [documentation](https://docs.stack-auth.com/getting-started/setup)
Have your own? Happy to feature it if you create a PR or message us on [Discord](https://discord.stack-auth.com).
### Templates
-- [Stack Template by Stack Team](https://github.com/stack-auth/stack-template)
+- [Stack Template by Stack Team](https://github.com/stack-auth/stack-auth-template)
- [Next SaaSkit by wolfgunblood](https://github.com/wolfgunblood/nextjs-saaskit)
- [SaaS Boilerplate by Robin Faraj](https://github.com/robinfaraj/saas-boilerplate)
### Examples
- [Stack Example by career-tokens](https://github.com/career-tokens/StackYCAuth)
-- [Stack Demo by the Stack team](https://github.com/stack-auth/stack/tree/dev/examples/demo)
-- [Stack E-Commerce Example by the Stack team](https://github.com/stack-auth/stack/tree/dev/examples/e-commerce)
+- [Stack Demo by the Stack team](https://github.com/stack-auth/stack-auth/tree/dev/examples/demo)
+- [Stack E-Commerce Example by the Stack team](https://github.com/stack-auth/stack-auth/tree/dev/examples/e-commerce)
## 🏗 Development & Contribution
@@ -206,6 +206,6 @@ Thanks to [CodeViz](https://www.codeviz.ai) for generating the diagram!
## ❤ Contributors
-
+
diff --git a/apps/dashboard/src/app/(main)/(protected)/(outside-dashboard)/projects/footer.tsx b/apps/dashboard/src/app/(main)/(protected)/(outside-dashboard)/projects/footer.tsx
index 2c85eb976..9f8a8de05 100644
--- a/apps/dashboard/src/app/(main)/(protected)/(outside-dashboard)/projects/footer.tsx
+++ b/apps/dashboard/src/app/(main)/(protected)/(outside-dashboard)/projects/footer.tsx
@@ -1,5 +1,5 @@
import { Link } from "@/components/link";
-import { Typography, Separator } from "@stackframe/stack-ui";
+import { Separator, Typography } from "@stackframe/stack-ui";
import { FaDiscord, FaGithub, FaLinkedin } from "react-icons/fa";
export default function Footer () {
@@ -13,7 +13,7 @@ export default function Footer () {
{[
{ href: "https://discord.stack-auth.com/", icon: FaDiscord },
{ href: "https://www.linkedin.com/company/stackframe-inc", icon: FaLinkedin },
- { href: "https://github.com/stack-auth/stack", icon: FaGithub },
+ { href: "https://github.com/stack-auth/stack-auth", icon: FaGithub },
].map(({ href, icon: Icon }) => (
diff --git a/docs/fern/docs.yml b/docs/fern/docs.yml
index 27f09ea0d..9d7d464c2 100644
--- a/docs/fern/docs.yml
+++ b/docs/fern/docs.yml
@@ -274,7 +274,7 @@ navbar-links:
url: https://discord.stack-auth.com
- type: secondary
text: GitHub
- url: https://github.com/stack-auth/stack
+ url: https://github.com/stack-auth/stack-auth
- type: primary
text: Dashboard
url: https://app.stack-auth.com
diff --git a/docs/fern/docs/pages/components/stack-provider.mdx b/docs/fern/docs/pages/components/stack-provider.mdx
index 7cf0d4767..c93094808 100644
--- a/docs/fern/docs/pages/components/stack-provider.mdx
+++ b/docs/fern/docs/pages/components/stack-provider.mdx
@@ -13,7 +13,7 @@ For detailed usage instructions, please refer to the manual section of the [setu
- `children`: `React.ReactNode` - The child components to be wrapped by the StackProvider.
- `app`: `StackClientApp | StackServerApp` - The Stack app instance to be used.
- `lang` (optional): `"en-US" | "de-DE" | "es-419" | "es-ES" | "fr-CA" | "fr-FR" | "it-IT" | "pt-BR" | "pt-PT"` - The language to be used for translations.
-- `translationOverrides` (optional): `Record` - A mapping of English translations to translated equivalents. These will take priority over the translations from the language specified in the `lang` property. Note that the keys are case-sensitive. You can find a full list of supported strings [on GitHub](https://github.com/stack-auth/stack/blob/dev/packages/stack/src/generated/quetzal-translations.ts).
+- `translationOverrides` (optional): `Record` - A mapping of English translations to translated equivalents. These will take priority over the translations from the language specified in the `lang` property. Note that the keys are case-sensitive. You can find a full list of supported strings [on GitHub](https://github.com/stack-auth/stack-auth/blob/dev/packages/stack/src/generated/quetzal-translations.ts).
## Example
diff --git a/docs/fern/docs/pages/faq.mdx b/docs/fern/docs/pages/faq.mdx
index a7b81fc57..2b2a847e9 100644
--- a/docs/fern/docs/pages/faq.mdx
+++ b/docs/fern/docs/pages/faq.mdx
@@ -35,6 +35,6 @@ subtitle: Frequently asked questions about Stack
## Other
- Please carefully read our [CONTRIBUTING.md](https://github.com/stack-auth/stack/blob/dev/CONTRIBUTING.md).
+ Please carefully read our [CONTRIBUTING.md](https://github.com/stack-auth/stack-auth/blob/dev/CONTRIBUTING.md).
diff --git a/docs/fern/docs/pages/others/js-client.mdx b/docs/fern/docs/pages/others/js-client.mdx
index e9248cffa..00c506468 100644
--- a/docs/fern/docs/pages/others/js-client.mdx
+++ b/docs/fern/docs/pages/others/js-client.mdx
@@ -83,7 +83,7 @@ Check out the [SDK reference](../sdk/overview.mdx) for more details and examples
## HTML + JS + Vite Example
-Here is how to use Stack Auth with Vite, other frameworks work with the same principle. The full example code is available [here](https://github.com/stack-auth/stack/tree/main/examples/js-example).
+Here is how to use Stack Auth with Vite, other frameworks work with the same principle. The full example code is available [here](https://github.com/stack-auth/stack-auth/tree/main/examples/js-example).
### Initialize the app
diff --git a/docs/fern/docs/pages/others/self-host.mdx b/docs/fern/docs/pages/others/self-host.mdx
index 23ae9512d..27468484f 100644
--- a/docs/fern/docs/pages/others/self-host.mdx
+++ b/docs/fern/docs/pages/others/self-host.mdx
@@ -35,7 +35,7 @@ Stack Auth provides a pre-configured Docker image that bundles the dashboard and
docker run -d --name db -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=password -e POSTGRES_DB=stackframe -p 5432:5432 postgres:latest
```
-2. Get the [example environment file](https://github.com/stack-auth/stack/tree/main/docker/server/.env.example) and modify it to your needs. See the [full template here](https://github.com/stack-auth/stack/blob/dev/docker/server/.env).
+2. Get the [example environment file](https://github.com/stack-auth/stack-auth/tree/main/docker/server/.env.example) and modify it to your needs. See the [full template here](https://github.com/stack-auth/stack-auth/blob/dev/docker/server/.env).
3. Run the Docker container:
```sh
diff --git a/docs/fern/docs/pages/others/supabase.mdx b/docs/fern/docs/pages/others/supabase.mdx
index 8c305f9d6..dcf857eff 100644
--- a/docs/fern/docs/pages/others/supabase.mdx
+++ b/docs/fern/docs/pages/others/supabase.mdx
@@ -161,4 +161,4 @@ Now you should be able to compare the data you can view with an anonymous user,
-You can find the full example [here on GitHub](https://github.com/stack-auth/stack/tree/main/examples/supabase).
\ No newline at end of file
+You can find the full example [here on GitHub](https://github.com/stack-auth/stack-auth/tree/main/examples/supabase).
diff --git a/docs/fern/docs/pages/overview.mdx b/docs/fern/docs/pages/overview.mdx
index 1ee1450b3..5f0482e70 100644
--- a/docs/fern/docs/pages/overview.mdx
+++ b/docs/fern/docs/pages/overview.mdx
@@ -98,7 +98,7 @@ To manage everything efficiently, there is a powerful admin dashboard:

-Best of all, Stack is **100% open-source**. This means the client, server, dashboard, and even this documentation you're reading right now. Check out our [GitHub](https://github.com/stack-auth/stack) to open an issue or pull request.
+Best of all, Stack is **100% open-source**. This means the client, server, dashboard, and even this documentation you're reading right now. Check out our [GitHub](https://github.com/stack-auth/stack-auth) to open an issue or pull request.
This is just a glimpse of what Stack can do. Stack also handles many other tasks like backend integration, data storage, emails, teams, permissions, and more, which you will learn about later in the documentation.
diff --git a/packages/stack-shared/src/interface/clientInterface.ts b/packages/stack-shared/src/interface/clientInterface.ts
index b39ba733a..4365c98fb 100644
--- a/packages/stack-shared/src/interface/clientInterface.ts
+++ b/packages/stack-shared/src/interface/clientInterface.ts
@@ -373,7 +373,7 @@ export class StackClientInterface {
if (res.status === 508 && error.includes("INFINITE_LOOP_DETECTED")) {
// Some Vercel deployments seem to have an odd infinite loop bug. In that case, retry.
- // See: https://github.com/stack-auth/stack/issues/319
+ // See: https://github.com/stack-auth/stack-auth/issues/319
return Result.error(errorObj);
}
diff --git a/packages/template/README.md b/packages/template/README.md
index a10051145..1d21d1d18 100644
--- a/packages/template/README.md
+++ b/packages/template/README.md
@@ -1,6 +1,6 @@
# Stack Auth: Open-source Clerk/Auth0 alternative
-## [📘 Docs](https://docs.stack-auth.com) | [☁️ Hosted Version](https://stack-auth.com/) | [✨ Demo](https://demo.stack-auth.com/) | [🎮 Discord](https://discord.stack-auth.com) | [GitHub](https://github.com/stack-auth/stack)
+## [📘 Docs](https://docs.stack-auth.com) | [☁️ Hosted Version](https://stack-auth.com/) | [✨ Demo](https://demo.stack-auth.com/) | [🎮 Discord](https://discord.stack-auth.com) | [GitHub](https://github.com/stack-auth/stack-auth)
Stack Auth is a managed user authentication solution. It is developer-friendly and fully open-source (licensed under MIT and AGPL).