diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro
index 5ec85ce..3996007 100644
--- a/src/layouts/BaseLayout.astro
+++ b/src/layouts/BaseLayout.astro
@@ -11,7 +11,9 @@ interface Props {
}
const { title, description = config.description } = Astro.props;
-const fullTitle = title.includes(config.title) ? title : `${title} | ${config.title}`;
+const fullTitle = title.includes(config.title)
+ ? title
+ : `${title} | ${config.title}`;
const canonicalUrl = Astro.url.href;
---
@@ -42,12 +44,15 @@ const canonicalUrl = Astro.url.href;
+
+
+