🔥 remove imports

This commit is contained in:
Sindre Kjelsrud 2023-12-10 21:14:28 +01:00
parent b802bd1597
commit 0ecaf0eb9e
3 changed files with 0 additions and 3 deletions

View file

@ -1,6 +1,5 @@
---
import type { CollectionEntry } from 'astro:content';
import BaseHead from '../components/BaseHead.astro';
import FormattedDate from '../components/FormattedDate.astro';
import SectionContainer from '../components/SectionContainer.astro';

View file

@ -1,5 +1,4 @@
---
import BaseHead from '../components/BaseHead.astro';
import SectionContainer from '../components/SectionContainer.astro';
const {frontmatter} = Astro.props;

View file

@ -2,7 +2,6 @@
import { getCollection } from 'astro:content';
import FormattedDate from '../../components/FormattedDate.astro';
import SectionContainer from '../../components/SectionContainer.astro';
import BaseHead from '../../components/BaseHead.astro';
const posts = (await getCollection('blog')).sort(
(a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf()