diff --git a/public/static/twitter-card.png b/public/static/twitter-card.png
index 2e2f6fe..c447f8f 100644
Binary files a/public/static/twitter-card.png and b/public/static/twitter-card.png differ
diff --git a/src/components/BlogCard.astro b/src/components/BlogCard.astro
index 5ef5e7c..0151034 100644
--- a/src/components/BlogCard.astro
+++ b/src/components/BlogCard.astro
@@ -35,7 +35,7 @@ const authors = await parseAuthors(entry.data.authors ?? [])
alt={entry.data.title}
width={200}
height={200}
- class="rounded-xl object-cover"
+ class="object-cover"
/>
)
diff --git a/src/components/Head.astro b/src/components/Head.astro
index bcec696..107d004 100644
--- a/src/components/Head.astro
+++ b/src/components/Head.astro
@@ -28,15 +28,13 @@ const { title, description, image = '/static/twitter-card.png' } = Astro.props
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/src/components/Header.astro b/src/components/Header.astro
index fd63cdd..053ca3e 100644
--- a/src/components/Header.astro
+++ b/src/components/Header.astro
@@ -18,7 +18,7 @@ import logo from '../../public/static/logo.svg'
href="/"
class="flex flex-shrink-0 items-center gap-2 text-xl font-semibold transition-colors duration-300 hover:text-primary"
>
-
+
{SITE.TITLE}
diff --git a/src/consts.ts b/src/consts.ts
index b55270d..ae11778 100644
--- a/src/consts.ts
+++ b/src/consts.ts
@@ -14,7 +14,7 @@ export type NavigationLink = {
export const SITE: Site = {
TITLE: 'astro-erudite',
DESCRIPTION:
- 'astro-erudite is a opinionated, no-frills blogging template. Built with Astro.',
+ 'astro-erudite is a opinionated, no-frills blogging template—built with Astro, Tailwind, and shadcn/ui.',
EMAIL: 'jason@enscribe.dev',
NUM_POSTS_ON_HOMEPAGE: 2,
SITEURL: 'https://astro-erudite.vercel.app',
diff --git a/src/pages/blog/[...slug].astro b/src/pages/blog/[...slug].astro
index 4e9d1f5..3463053 100644
--- a/src/pages/blog/[...slug].astro
+++ b/src/pages/blog/[...slug].astro
@@ -71,7 +71,7 @@ const authors = await parseAuthors(post.data.authors ?? [])
alt={post.data.title}
width={1200}
height={630}
- class="rounded-xl object-cover"
+ class="object-cover"
/>
)
}