-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
71e5d90
commit b5181d3
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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,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; | ||
} |