Skip to content

Commit

Permalink
chore: update social media preview image
Browse files Browse the repository at this point in the history
  • Loading branch information
rzmk committed Sep 4, 2024
1 parent 386708c commit e548137
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
Binary file added public/sm-preview.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 14 additions & 6 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,30 @@ const { title } = Astro.props;
<!-- Primary Meta Tags -->
<title>{title}</title>
<meta name="title" content={title} />
<meta name="description" content="Transform and upload spreadsheet data to CKAN with our streamlined desktop app, featuring 'recipes' for common data wrangling tasks. Based on the qsv CLI tool." />
<meta
name="description"
content="Transform and upload spreadsheet data to CKAN with our streamlined desktop app, featuring 'recipes' for common data wrangling tasks. Based on the qsv CLI tool."
/>

<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://qsvpro.dathere.com" />
<meta property="og:title" content={title} />
<meta property="og:description" content="Transform and upload spreadsheet data to CKAN with our streamlined desktop app, featuring 'recipes' for common data wrangling tasks. Based on the qsv CLI tool." />
<meta property="og:image" content="/sm-preview.png" />
<meta
property="og:description"
content="Transform and upload spreadsheet data to CKAN with our streamlined desktop app, featuring 'recipes' for common data wrangling tasks. Based on the qsv CLI tool."
/>
<meta property="og:image" content="/sm-preview.jpg" />

<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://qsvpro.dathere.com" />
<meta property="twitter:title" content={title} />
<meta property="twitter:description" content="Transform and upload spreadsheet data to CKAN with our streamlined desktop app, featuring 'recipes' for common data wrangling tasks. Based on the qsv CLI tool." />
<meta property="twitter:image" content="/sm-preview.png" />

<meta
property="twitter:description"
content="Transform and upload spreadsheet data to CKAN with our streamlined desktop app, featuring 'recipes' for common data wrangling tasks. Based on the qsv CLI tool."
/>
<meta property="twitter:image" content="/sm-preview.jpg" />
</head>
<body>
<slot />
Expand Down

0 comments on commit e548137

Please sign in to comment.