summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Fred K. Schott <fkschott@gmail.com> 2021-06-17 14:04:18 -0700
committerGravatar GitHub <noreply@github.com> 2021-06-17 16:04:18 -0500
commita936d92cee680b6a63ae8910169b44d87604021b (patch)
tree76453e938e6decd56e134a8c3ac669aadaf4d30c
parent24b360cb17d641ffd037b9032b5be672326ea21c (diff)
downloadastro-a936d92cee680b6a63ae8910169b44d87604021b.tar.gz
astro-a936d92cee680b6a63ae8910169b44d87604021b.tar.zst
astro-a936d92cee680b6a63ae8910169b44d87604021b.zip
optimize social image (#486)
-rw-r--r--www/public/social.jpgbin0 -> 25266 bytes
-rw-r--r--www/src/components/BaseHead.astro4
-rw-r--r--www/src/pages/blog/introducing-astro.astro2
3 files changed, 3 insertions, 3 deletions
diff --git a/www/public/social.jpg b/www/public/social.jpg
new file mode 100644
index 000000000..906c76144
--- /dev/null
+++ b/www/public/social.jpg
Binary files differ
diff --git a/www/src/components/BaseHead.astro b/www/src/components/BaseHead.astro
index b7ae09c95..ee7510bde 100644
--- a/www/src/components/BaseHead.astro
+++ b/www/src/components/BaseHead.astro
@@ -19,14 +19,14 @@ export let permalink: string;
<meta property="og:url" content={permalink} />
<meta property="og:title" content={title} />
<meta property="og:description" content={description} />
-<meta property="og:image" content="https://astro.build/social.png?v=1" />
+<meta property="og:image" content="https://astro.build/social.jpg?v=1" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content={permalink} />
<meta property="twitter:title" content={title} />
<meta property="twitter:description" content={description} />
-<meta property="twitter:image" content="https://astro.build/social.png?v=1" />
+<meta property="twitter:image" content="https://astro.build/social.jpg?v=1" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
diff --git a/www/src/pages/blog/introducing-astro.astro b/www/src/pages/blog/introducing-astro.astro
index 0b08a6abf..dc72a6a98 100644
--- a/www/src/pages/blog/introducing-astro.astro
+++ b/www/src/pages/blog/introducing-astro.astro
@@ -11,7 +11,7 @@ let title = 'Introducing Astro: Ship Less JavaScript';
let description = `We're excited to announce Astro as a new way to build static websites and deliver lightning-fast performance without sacrificing a modern developer experience.`;
let publishDate = 'Tuesday, June 8 2021';
let author = 'fred';
-let heroImage = '/social.png';
+let heroImage = '/social.jpg';
let permalink = 'https://astro.build/blog/introducing-astro';
---