🎩 fix helmet

This commit is contained in:
Sindre Kjelsrud 2023-12-10 01:11:19 +01:00
parent 10ff3eea0c
commit f44f06b949
3 changed files with 1 additions and 9 deletions

View file

@ -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';

View file

@ -8,10 +8,6 @@ type Props = CollectionEntry<'blog'>['data'];
const { title, description, pubDate } = Astro.props;
---
<head>
<BaseHead title={title} description={description} />
</head>
<SectionContainer>
<main class="flex flex-col flex-1 mb-auto break-words mt-4">
<article>

View file

@ -4,10 +4,6 @@ import SectionContainer from '../components/SectionContainer.astro';
const {frontmatter} = Astro.props;
---
<head>
<BaseHead title={frontmatter.title} description={frontmatter.description} />
</head>
<SectionContainer>
<main class="flex flex-col flex-1 mb-auto break-words mt-4">
<article>