summaryrefslogtreecommitdiff
path: root/examples/docs/src
diff options
context:
space:
mode:
Diffstat (limited to 'examples/docs/src')
-rw-r--r--examples/docs/src/components/Footer/AvatarList.astro4
-rw-r--r--examples/docs/src/config.ts4
2 files changed, 4 insertions, 4 deletions
diff --git a/examples/docs/src/components/Footer/AvatarList.astro b/examples/docs/src/components/Footer/AvatarList.astro
index 589e296b9..429676990 100644
--- a/examples/docs/src/components/Footer/AvatarList.astro
+++ b/examples/docs/src/components/Footer/AvatarList.astro
@@ -1,8 +1,8 @@
---
// fetch all commits for just this page's path
const path = "docs/" + Astro.props.path;
-const url = `https://api.github.com/repos/snowpackjs/astro/commits?path=${path}`;
-const commitsURL = `https://github.com/snowpackjs/astro/commits/main/${path}`;
+const url = `https://api.github.com/repos/withastro/astro/commits?path=${path}`;
+const commitsURL = `https://github.com/withastro/astro/commits/main/${path}`;
async function getCommits(url) {
try {
diff --git a/examples/docs/src/config.ts b/examples/docs/src/config.ts
index 1ccc647d3..ae4321f48 100644
--- a/examples/docs/src/config.ts
+++ b/examples/docs/src/config.ts
@@ -6,7 +6,7 @@ export const SITE = {
export const OPEN_GRAPH = {
image: {
- src: 'https://github.com/snowpackjs/astro/blob/main/assets/social/banner.jpg?raw=true',
+ src: 'https://github.com/withastro/astro/blob/main/assets/social/banner.jpg?raw=true',
alt: 'astro logo on a starry expanse of space,' + ' with a purple saturn-like planet floating in the right foreground',
},
twitter: 'astrodotbuild',
@@ -17,7 +17,7 @@ export const KNOWN_LANGUAGES = {
};
// Uncomment this to add an "Edit this page" button to every page of documentation.
-// export const GITHUB_EDIT_URL = `https://github.com/snowpackjs/astro/blob/main/docs/`;
+// export const GITHUB_EDIT_URL = `https://github.com/withastro/astro/blob/main/docs/`;
// Uncomment this to add an "Join our Community" button to every page of documentation.
// export const COMMUNITY_INVITE_URL = `https://astro.build/chat`;