-
Notifications
You must be signed in to change notification settings - Fork 0
Feat: improve SEO #79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
012548b
wip(frontend): add placeholder metadata on home
alcercu 89371a4
feat(frontend): add favicon
alcercu b9b18cd
fix(frontend): use correct way of adding metadata
alcercu 74a3175
feat(frontend): add SEO queries
alcercu 2e16b61
Merge branch 'master' into feat(frontend)/improve-SEO
alcercu f9ba9d3
feat(frontend): set robots index to true
alcercu 7a0b015
chore(frontend): add robots.txt file
alcercu 35ca0a4
refactor(frontend): abstract get metadata
alcercu fdd57b9
fix(frontend): brandassets page metadata
alcercu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
User-agent: * | ||
Disallow: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
import { gql } from "graphql-request"; | ||
|
||
const SEO_CONTENT = ` | ||
SEO { | ||
title | ||
description | ||
image { | ||
url | ||
} | ||
} | ||
`; | ||
|
||
export const seoQuery = gql` | ||
{ | ||
brandAssetsPageSeo { | ||
${SEO_CONTENT} | ||
} | ||
communityPageSeo { | ||
${SEO_CONTENT} | ||
} | ||
cooperativePageSeo { | ||
${SEO_CONTENT} | ||
} | ||
earnPageSeo { | ||
${SEO_CONTENT} | ||
} | ||
forBuildersPageSeo { | ||
${SEO_CONTENT} | ||
} | ||
forLawyersPageSeo { | ||
${SEO_CONTENT} | ||
} | ||
homePageSeo { | ||
${SEO_CONTENT} | ||
} | ||
pnkTokenPageSeo { | ||
${SEO_CONTENT} | ||
} | ||
rAndDPageSeo { | ||
${SEO_CONTENT} | ||
} | ||
} | ||
`; | ||
|
||
type ISEO = { | ||
SEO: { | ||
title: string; | ||
description: string; | ||
image: { | ||
url: string; | ||
}; | ||
}; | ||
}; | ||
|
||
export type SEOQueryType = { | ||
brandAssetsPageSeo: ISEO; | ||
communityPageSeo: ISEO; | ||
cooperativePageSeo: ISEO; | ||
earnPageSeo: ISEO; | ||
forBuildersPageSeo: ISEO; | ||
forLawyersPageSeo: ISEO; | ||
homePageSeo: ISEO; | ||
pnkTokenPageSeo: ISEO; | ||
rAndDPageSeo: ISEO; | ||
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import type { Metadata } from "next"; | ||
|
||
import { seoQuery, SEOQueryType } from "@/queries/seo"; | ||
import { request } from "@/utils/graphQLClient"; | ||
|
||
type PageKey = keyof SEOQueryType; | ||
|
||
export const getPageMetadata = async (pageKey: PageKey): Promise<Metadata> => { | ||
const seoData = await request<SEOQueryType>(seoQuery); | ||
const { title, description, image } = seoData[pageKey].SEO; | ||
|
||
return { | ||
title, | ||
description, | ||
openGraph: { | ||
title, | ||
description, | ||
images: image.url, | ||
}, | ||
}; | ||
}; | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.