Skip to content

Commit

Permalink
💄Home page - Add link to new blog
Browse files Browse the repository at this point in the history
  • Loading branch information
SamBWagner committed Sep 29, 2024
1 parent ce5f327 commit 788f097
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
20 changes: 20 additions & 0 deletions UI/app/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,26 @@ export default function home() {
<h2 className={`${styles.byLine}`}>Develop · Deploy · Deliver</h2>
<hr className={`${styles.divider}`}></hr>
<div className={`${styles.blogCardContainer}`}>
<BlogCard
url="first-commander-deck"
urlAria="navigate to the Build your first commander deck article"
>
<h3>Build your first Magic: The Gathering - Commander deck</h3>
<p>
Building your first Commander deck can be both exciting and
overwhelming. With thousands of cards to choose from and countless
strategies to explore, it's easy to feel lost. This guide is
designed to help new players step into the world of Commander. We'll
start by commanders that are perfect for beginners. Then, we'll walk
you through a simple framework for building your first deck.
Finally, we'll give you a few extra tools to help you refine your
deck as you play and make it your own!
</p>
<div className={styles.blogCardReadMore}>
<p>Click to read more</p>
</div>
</BlogCard>

<BlogCard url="rust-game" urlAria="navigate to Learning Rust blog post">
<h3>Learning Rust</h3>
<p>
Expand Down
2 changes: 2 additions & 0 deletions UI/app/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@
.blogCardContainer {
padding-top: 3rem;;
display: flex;
flex-direction: column;
gap: 2rem;
justify-content: center;
}

Expand Down

0 comments on commit 788f097

Please sign in to comment.