diff --git a/src/pages/blog/index.astro b/src/pages/blog/index.astro index e12d822..98d9798 100644 --- a/src/pages/blog/index.astro +++ b/src/pages/blog/index.astro @@ -2,7 +2,8 @@ import BaseHead from "../../components/Head.astro"; import Header from "../../components/Header.astro"; import Footer from "../../components/Footer.astro"; -import Card from "../../components/Card-Blog.astro"; +import BlogCard from "../../components/Card-Blog.astro"; +import Card from "../../components/Card.astro" import Layout from "../../layouts/Layout.astro"; import { SITE_TITLE, SITE_DESCRIPTION } from "../../consts"; import { getCollection } from "astro:content"; @@ -21,12 +22,20 @@ const posts = (await getCollection("blog")).sort(

The Blog Posts

This is where I post things and stuff, eventually...

-
+
+ +
{ posts.map((post) => ( <>