Skip to content

Commit

Permalink
Domain update
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmarcia committed Oct 18, 2023
1 parent acce04d commit d96c94e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Deploy to happycommits.dev
name: Deploy to forgoodfirstissue.dev

on:
# Runs on pushes targeting the default branch
Expand Down
6 changes: 3 additions & 3 deletions generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -323,18 +323,18 @@ const getRepositories = async (
const sitemap = `<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://happycommits.dev</loc>
<loc>https://forgoodfirstissue.dev</loc>
</url>
${data.languages
.map(
(language: CountableTagModel) =>
`<url><loc>https://happycommits.dev/language/${language.id}</loc></url>`
`<url><loc>https://forgoodfirstissue.dev/language/${language.id}</loc></url>`
)
.join("")}
${data.topics
.map(
(topic: CountableTagModel) =>
`<url><loc>https://happycommits.dev/topic/${topic.id}</loc></url>`
`<url><loc>https://forgoodfirstissue.dev/topic/${topic.id}</loc></url>`
)
.join("")}
</urlset>
Expand Down
10 changes: 5 additions & 5 deletions pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ export default function Document() {
content="Making your next open-source contribution make the world better. Happy Commits is a curated list of accessible issues from open-source projects helping our communities. Start today!"
/>

<meta property="og:url" content="https://happycommits.dev" />
<meta property="og:url" content="https://forgoodfirstissue.dev" />
<meta property="og:type" content="website" />
<meta
property="og:title"
content="Happy Commits | Make your next open-source contribution matter."
/>
<meta property="og:image" content="https://happycommits.dev/" />
<meta property="og:image" content="https://forgoodfirstissue.dev/" />

<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="happycommits.dev" />
<meta property="twitter:url" content="https://happycommits.dev" />
<meta property="twitter:domain" content="forgoodfirstissue.dev" />
<meta property="twitter:url" content="https://forgoodfirstissue.dev" />
<meta
name="twitter:title"
content="Happy Commits | Make your next open-source contribution matter."
Expand All @@ -28,7 +28,7 @@ export default function Document() {
name="twitter:description"
content="Making your next open-source contribution make the world better. Happy Commits is a curated list of accessible issues from open-source projects helping our communities. Start today!"
/>
<meta name="twitter:image" content="https://happycommits.dev/" />
<meta name="twitter:image" content="https://forgoodfirstissue.dev/" />

<meta charSet="UTF-8" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
Expand Down

0 comments on commit d96c94e

Please sign in to comment.