Skip to content

Commit

Permalink
Merge pull request #1 from splitgraph/add-og-image
Browse files Browse the repository at this point in the history
Add OG image and meta tags
  • Loading branch information
onpaws committed Apr 12, 2023
2 parents 092c837 + 681f2b0 commit e9438cf
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions components/HeadTag.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,29 @@
import Head from 'next/head'
import Head from "next/head";

const HeadTag = () =>
const HeadTag = () => (
<Head>
<title>Open Data Monitor</title>
<meta name="description" content="A feed of open government data diffs" />
<link rel="icon" href="/favicon.ico" />
<meta property="og:title" content="Open Data Monitor" />
<meta property="og:site_name" content="Open Data Monitor" />
<meta property="og:url" content="https://open-data-monitor.splitgraph.io" />
<meta
property="og:description"
content="Newsfeed for tracking added and deleted datasets across hundreds of government open data portals. Made by Splitgraph, powered by Seafowl."
/>
<meta property="og:type" content="website" />
<meta
property="og:image"
content="https://open-data-monitor.splitgraph.io/open-data-monitor-og-image.png"
/>
<meta
property="og:image:alt"
content="Open Data Monitor Newsfeed - Track new and deleted datasets on hundreds of government data portals"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
</Head>
);

export default HeadTag
export default HeadTag;
Binary file added public/open-data-monitor-og-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

1 comment on commit e9438cf

@vercel
Copy link

@vercel vercel bot commented on e9438cf Apr 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.