Skip to content

Commit

Permalink
refactor: ♻️ update seo
Browse files Browse the repository at this point in the history
  • Loading branch information
slugb0t committed Dec 17, 2024
1 parent 86c811d commit 11f97f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Seo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const defaultMeta = {
type: 'website',
robots: 'follow, index',
image:
'https://kalai.fairdataihub.org/api/generate?title=EyeACTStudy.org&description=&app=EyeACT&org=fairdataihub',
'https://kalai.fairdataihub.org/api/generate?title=EyeACTStudy.org&description=&app=eyeact&org=eyeact',
};

type SeoProps = {
Expand All @@ -34,9 +34,9 @@ export default function Seo(props: SeoProps) {
meta['description'] = props.templateDescription || meta.description;

meta['image'] =
`https://kalai.fairdataihub.org/api/generate?app=EyeACT&title=${encodeURIComponent(
`https://kalai.fairdataihub.org/api/generate?app=eyeact&title=${encodeURIComponent(
meta.title,
)}&org=fairdataihub&description=${encodeURIComponent(meta.description)}`;
)}&org=eyeact&description=${encodeURIComponent(meta.description)}`;

return (
<Head>
Expand Down

0 comments on commit 11f97f1

Please sign in to comment.