"I had some challenges, but asking in the community really helped!"
Published on: 7/15/2022
Written by: Astro Learner
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>