From 421fbffe86c8adeae32f18c863645ba891305904 Mon Sep 17 00:00:00 2001 From: YouHaveTrouble Date: Tue, 7 May 2024 15:49:47 +0200 Subject: [PATCH] Update about page description The About page's description is updated to a more personalized message, replacing the generic 'About your blog' explanation with 'A few words about myself.' --- src/pages/about.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/about.astro b/src/pages/about.astro index e82d472..be28405 100644 --- a/src/pages/about.astro +++ b/src/pages/about.astro @@ -2,7 +2,7 @@ import BaseLayout from '../layouts/BaseLayout.astro'; const title = 'About'; -const description = 'About your blog.'; +const description = 'A few words about myself.'; const permalink = `${Astro.site.href}about`; ---