diff --git a/src/consts.ts b/src/consts.ts index 59bf8bf..fc98632 100644 --- a/src/consts.ts +++ b/src/consts.ts @@ -1,5 +1,5 @@ // Place any global data in this file. // You can import this data from anywhere in your site by using the `import` keyword. -export const SITE_TITLE = 'kjelsrud.dev'; +export const SITE_TITLE = 'Sindre Kjelsrud'; export const SITE_DESCRIPTION = 'kjelsrud.dev'; \ No newline at end of file diff --git a/src/layouts/BlogPost.astro b/src/layouts/BlogPost.astro index 78dfa31..6a794ea 100644 --- a/src/layouts/BlogPost.astro +++ b/src/layouts/BlogPost.astro @@ -8,10 +8,6 @@ type Props = CollectionEntry<'blog'>['data']; const { title, description, pubDate } = Astro.props; --- - - - -
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 22973de..262d87c 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -4,10 +4,6 @@ import SectionContainer from '../components/SectionContainer.astro'; const {frontmatter} = Astro.props; --- - - - -