🎩 fix helmet
This commit is contained in:
parent
10ff3eea0c
commit
f44f06b949
3 changed files with 1 additions and 9 deletions
|
@ -1,5 +1,5 @@
|
||||||
// Place any global data in this file.
|
// Place any global data in this file.
|
||||||
// You can import this data from anywhere in your site by using the `import` keyword.
|
// 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';
|
export const SITE_DESCRIPTION = 'kjelsrud.dev';
|
|
@ -8,10 +8,6 @@ type Props = CollectionEntry<'blog'>['data'];
|
||||||
|
|
||||||
const { title, description, pubDate } = Astro.props;
|
const { title, description, pubDate } = Astro.props;
|
||||||
---
|
---
|
||||||
<head>
|
|
||||||
<BaseHead title={title} description={description} />
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<SectionContainer>
|
<SectionContainer>
|
||||||
<main class="flex flex-col flex-1 mb-auto break-words mt-4">
|
<main class="flex flex-col flex-1 mb-auto break-words mt-4">
|
||||||
<article>
|
<article>
|
||||||
|
|
|
@ -4,10 +4,6 @@ import SectionContainer from '../components/SectionContainer.astro';
|
||||||
|
|
||||||
const {frontmatter} = Astro.props;
|
const {frontmatter} = Astro.props;
|
||||||
---
|
---
|
||||||
<head>
|
|
||||||
<BaseHead title={frontmatter.title} description={frontmatter.description} />
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<SectionContainer>
|
<SectionContainer>
|
||||||
<main class="flex flex-col flex-1 mb-auto break-words mt-4">
|
<main class="flex flex-col flex-1 mb-auto break-words mt-4">
|
||||||
<article>
|
<article>
|
||||||
|
|
Loading…
Reference in a new issue