remove broken import

This commit is contained in:
Chris W 2024-01-03 16:17:55 -07:00
parent 87540cfebc
commit f42c272e4a
1 changed files with 0 additions and 1 deletions

View File

@ -4,7 +4,6 @@ import Header from '../components/Header.astro';
import Footer from '../components/Footer.astro'; import Footer from '../components/Footer.astro';
import { SITE_TITLE, SITE_DESCRIPTION } from '../consts'; import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
import { getCollection } from 'astro:content'; import { getCollection } from 'astro:content';
import slugify from "@utils/sligify";
const featuredProjects = (await getCollection('projects', (item) => item.data.featured)); const featuredProjects = (await getCollection('projects', (item) => item.data.featured));
const latestPosts = (await getCollection('posts')) const latestPosts = (await getCollection('posts'))