Skip to content

Commit

Permalink
added: faq button in the homepage
Browse files Browse the repository at this point in the history
Signed-off-by: Ahmed AbouZaid <6760103+aabouzaid@users.noreply.github.com>
  • Loading branch information
aabouzaid committed Oct 21, 2024
1 parent e02e44f commit e73c546
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,18 @@ html {
.img-right {
margin:0 0 10px 10px;
}

/* Primary button */

.button--primary-right {
margin: 10px 10px;
border: unset;
transition: transform 0.3s ease, color 0.3s ease;
}

.button--primary-right:hover {
background-color: unset;
border: unset;
font-weight: bold;
transform: translateX(3px);
}
5 changes: 5 additions & 0 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ function HomepageHeader() {
to="/getting-started">
⚡ Get Started Now ⚡
</Link>
<Link
className="button button--primary-right button--lg"
to="/faq">
FAQ ➡
</Link>
</div>
</div>
</header>
Expand Down

0 comments on commit e73c546

Please sign in to comment.