Skip to content

Commit

Permalink
Testing font breaking in prod
Browse files Browse the repository at this point in the history
  • Loading branch information
kubgus committed Sep 10, 2024
1 parent b6b7645 commit 88a9494
Showing 1 changed file with 0 additions and 30 deletions.
30 changes: 0 additions & 30 deletions src/components/content/blog.astro
Original file line number Diff line number Diff line change
Expand Up @@ -9,40 +9,10 @@ posts.sort((a, b) => new Date(b.frontmatter.date).valueOf() - new Date(a.frontma
<div class="content-inner">
<h1>Join my newsletter!</h1>

<section id="newsletter">
<p>
I have a newsletter, btw! I post regular updates on my work, exclusive
guides, and Patreon member articles for free.
</p>

<a href="/join" rel="noopener noreferrer" id="join" class="btn">Join</a>
</section>

<h1>Blog Posts</h1>
{
posts.map((post) => (
<BlogPreview url={post.url} frontmatter={post.frontmatter} />
))
}
</div>

<style>
#newsletter {
display: flex;
flex-direction: row;
gap: 2rem;
}

@media (max-width: 700px) {
#newsletter {
flex-direction: column;
}
}

#join {
max-height: 60px;
display: flex;
justify-content: center;
align-items: center;
}
</style>

0 comments on commit 88a9494

Please sign in to comment.