Skip to content

Commit 299dd1e

Browse files
committed
fix stuff
1 parent 3d092fd commit 299dd1e

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

src/layouts/Layout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const socialImageURL = new URL(
4141
<head>
4242
<meta charset="UTF-8" />
4343
<meta name="viewport" content="width=device-width" />
44-
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
44+
<link rel="icon" type="image/png" href="/favicon.png" />
4545
<link rel="canonical" href={canonicalURL} />
4646
<meta name="generator" content={Astro.generator} />
4747

src/pages/index.astro

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ const socialCount = SOCIALS.filter(social => social.active).length;
6666
<ul>
6767
{featuredPosts.map(({ data, slug }) => (
6868
<Card
69-
client:load
7069
href={`/posts/${slug}/`}
7170
frontmatter={data}
7271
secHeading={false}
@@ -88,7 +87,6 @@ const socialCount = SOCIALS.filter(social => social.active).length;
8887
({ data, slug }, index) =>
8988
index < 4 && (
9089
<Card
91-
client:load
9290
href={`/posts/${slug}/`}
9391
frontmatter={data}
9492
secHeading={false}

0 commit comments

Comments
 (0)