Skip to content

Commit

Permalink
fix: change default name
Browse files Browse the repository at this point in the history
  • Loading branch information
FlaBBB committed Oct 26, 2024
1 parent 7118a24 commit 718b27e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 21 deletions.
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.
13 changes: 0 additions & 13 deletions public/favicon.svg

This file was deleted.

6 changes: 3 additions & 3 deletions src/components/layout/BaseHead.astro
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const { title, description, ogImage } = Astro.props;
type='application/rss+xml'
/>

<meta name='title' content={`Brutal Theme | ${title}`} />
<meta name='title' content={`WRI Hacktoberfest | ${title}`} />
<meta name='description' content={description} />

<meta property='og:type' content='website' />
Expand All @@ -45,9 +45,9 @@ const { title, description, ogImage } = Astro.props;
<meta property='twitter:image' content={ogImage} />

<link rel='canonical' href={canonicalURL} />
<link rel='icon' type='image/svg' href='/favicon.svg' />
<link rel='icon' type='image/png' href='/favicon.png' />

<title>Brutal Theme | {title}</title>
<title>WRI Hacktoberfest | {title}</title>

<ViewTransitions />

Expand Down
6 changes: 3 additions & 3 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ const posts = await getCollection('blog').then((collection) =>
---

<Layout
title='Blog'
description='Brutal Blog | On this page you can find a collection of blogposts'
pageTitle='Brutal Blog'
title='Home'
description='HacktoberFest 2024 with WRI'
pageTitle='Hacktberfest WRI'
>
<main class='bg-green p-6'>
<BlogList posts={posts} />
Expand Down
4 changes: 2 additions & 2 deletions src/pages/tags/[tag].astro
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ const { tag, blogposts } = Astro.props;

<Layout
title={`Blog: ${tag}`}
description={`Brutal Blog | All posts tagged with ${tag}`}
pageTitle={`Brutal Blog | Blogposts tagged with ${tag}`}
description={`WRI Hacktoverfest | All posts tagged with ${tag}`}
pageTitle={`WRI Hacktoverfest | Blogposts tagged with ${tag}`}
>
<main class='p-6 bg-purple grid gap-4'>
<div>
Expand Down

0 comments on commit 718b27e

Please sign in to comment.