Skip to content

Commit

Permalink
added site metadata (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasdavis authored Dec 19, 2024
1 parent 71e5d90 commit b5181d3
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions apps/registry/app/job-similarity/layout.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
export const metadata = {
title: 'Job Market Similarity Graph | JSON Resume Registry',
description:
'Interactive visualization of the tech job market, powered by data from HN "Who\'s Hiring" threads and JSON Resume Registry. Explore connections between different job roles and discover hiring trends.',
openGraph: {
title: 'Job Market Similarity Graph | JSON Resume Registry',
description:
'Interactive visualization of the tech job market, powered by data from HN "Who\'s Hiring" threads and JSON Resume Registry. Explore connections between different job roles and discover hiring trends.',
images: [
{
url: 'https://i.imgur.com/W5G1fNG.png',
width: 1200,
height: 630,
alt: 'Job Market Similarity Graph visualization showing connected nodes representing different tech job roles',
},
],
},
twitter: {
card: 'summary_large_image',
title: 'Job Market Similarity Graph | JSON Resume Registry',
description:
'Interactive visualization of the tech job market, powered by data from HN "Who\'s Hiring" threads and JSON Resume Registry. Explore connections between different job roles and discover hiring trends.',
images: ['https://i.imgur.com/W5G1fNG.png'],
},
};

export default function Layout({ children }) {
return children;
}

0 comments on commit b5181d3

Please sign in to comment.