Skip to content

Commit

Permalink
Add favicon, remove astro assets
Browse files Browse the repository at this point in the history
- probably needs some tweaking for clarity
  • Loading branch information
solomonhawk committed Sep 2, 2022
1 parent 02377db commit 874b324
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Binary file removed public/assets/blog/introducing-astro.jpg
Binary file not shown.
Binary file modified public/favicon.ico
Binary file not shown.
Binary file added public/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/components/BaseHead.astro
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ const { title, description, permalink } = Astro.props;
<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" />

<!-- 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" />

<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
Expand Down

0 comments on commit 874b324

Please sign in to comment.