diff --git a/src/assets/img/features/ShareAudio.png b/src/assets/img/features/ShareAudio.png index 36d65ae..74cfa14 100644 Binary files a/src/assets/img/features/ShareAudio.png and b/src/assets/img/features/ShareAudio.png differ diff --git a/src/assets/img/features/Spectrogram.png b/src/assets/img/features/Spectrogram.png new file mode 100644 index 0000000..1374a18 Binary files /dev/null and b/src/assets/img/features/Spectrogram.png differ diff --git a/src/components/card/BlogListingCard.astro b/src/components/card/BlogListingCard.astro index 06b5dc3..f99d6cb 100644 --- a/src/components/card/BlogListingCard.astro +++ b/src/components/card/BlogListingCard.astro @@ -11,22 +11,16 @@ const { title, description, href, thumbnail, author, date } = Astro.props as Props; --- -
-
- -
-

- {title} -

-

{description}

-
-

By {author}

-

{date}

+
+ +
+
+

{title}

+

{description.slice(0, 50) + "..."}

+
+
+

{author}

+

{date}

-
diff --git a/src/components/homepage/BlogPosts.astro b/src/components/homepage/BlogPosts.astro index 0e1ab5f..5359bb0 100644 --- a/src/components/homepage/BlogPosts.astro +++ b/src/components/homepage/BlogPosts.astro @@ -13,13 +13,13 @@ interface Frontmatter { const posts = await Astro.glob("../../pages/posts/*.md"); --- -
-
+
+
-
+
+
{ posts .sort( @@ -43,12 +43,11 @@ const posts = await Astro.glob("../../pages/posts/*.md"); .map((post) => ( )) } @@ -56,5 +55,8 @@ const posts = await Astro.glob("../../pages/posts/*.md");
- - +