+
Found {results().length} results for {`'${query()}'`}
diff --git a/src/layouts/ArticleBottomLayout.astro b/src/layouts/ArticleBottomLayout.astro
index b2e7439..495d6bb 100644
--- a/src/layouts/ArticleBottomLayout.astro
+++ b/src/layouts/ArticleBottomLayout.astro
@@ -1,5 +1,6 @@
---
-import { type CollectionEntry, getCollection, render } from "astro:content";
+import { type CollectionEntry, getCollection } from "astro:content";
+import { Icon } from "astro-icon/components";
type Props = {
entry: CollectionEntry<"blog"> | CollectionEntry<"projects">;
@@ -8,7 +9,6 @@ type Props = {
// Get the requested entry
const { entry } = Astro.props;
const { collection } = entry;
-const { Content } = await render(entry);
// Get the next and prev entries (modulo to wrap index)
const items = (await getCollection(collection))
@@ -20,9 +20,6 @@ const next = items[(index - 1 + items.length) % items.length];
---
-
+
+
+
+