My Third Blog Post

The Astro logo on a dark background with rainbow rays.

"I had some challenges, but asking in the community really helped!"

Published on: 7/15/2022

Written by: Astro Learner

astro

learning in public

banana

community

It wasn’t always smooth sailing, but I’m enjoying building with Astro. And, the Discord community is really friendly and helpful!

Sample code block

<div class="tags">
  Tags:
  {frontmatter.tags.map((tag) => (
    <span style="text-decoration: underline;text-underline-offset: 4px;">
      {tag}
    </span>
  ))}
</div>