Skip to content

Commit 718b27e

Browse files
committed
fix: change default name
1 parent 7118a24 commit 718b27e

File tree

5 files changed

+8
-21
lines changed

5 files changed

+8
-21
lines changed

public/favicon.png

269 KB
Loading

public/favicon.svg

-13
This file was deleted.

src/components/layout/BaseHead.astro

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const { title, description, ogImage } = Astro.props;
2929
type='application/rss+xml'
3030
/>
3131

32-
<meta name='title' content={`Brutal Theme | ${title}`} />
32+
<meta name='title' content={`WRI Hacktoberfest | ${title}`} />
3333
<meta name='description' content={description} />
3434

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

4747
<link rel='canonical' href={canonicalURL} />
48-
<link rel='icon' type='image/svg' href='/favicon.svg' />
48+
<link rel='icon' type='image/png' href='/favicon.png' />
4949

50-
<title>Brutal Theme | {title}</title>
50+
<title>WRI Hacktoberfest | {title}</title>
5151

5252
<ViewTransitions />
5353

src/pages/index.astro

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ const posts = await getCollection('blog').then((collection) =>
1010
---
1111

1212
<Layout
13-
title='Blog'
14-
description='Brutal Blog | On this page you can find a collection of blogposts'
15-
pageTitle='Brutal Blog'
13+
title='Home'
14+
description='HacktoberFest 2024 with WRI'
15+
pageTitle='Hacktberfest WRI'
1616
>
1717
<main class='bg-green p-6'>
1818
<BlogList posts={posts} />

src/pages/tags/[tag].astro

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ const { tag, blogposts } = Astro.props;
4141

4242
<Layout
4343
title={`Blog: ${tag}`}
44-
description={`Brutal Blog | All posts tagged with ${tag}`}
45-
pageTitle={`Brutal Blog | Blogposts tagged with ${tag}`}
44+
description={`WRI Hacktoverfest | All posts tagged with ${tag}`}
45+
pageTitle={`WRI Hacktoverfest | Blogposts tagged with ${tag}`}
4646
>
4747
<main class='p-6 bg-purple grid gap-4'>
4848
<div>

0 commit comments

Comments
 (0)