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 <[email protected]>
  • Loading branch information
aabouzaid committed Oct 21, 2024
1 parent e02e44f commit d0e7a89
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
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);
}
7 changes: 6 additions & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ function HomepageHeader() {
<Link
className="button button--secondary button--lg"
to="/getting-started">
⚡ Get Started Now ⚡
⚡ Get Started ⚡
</Link>
<Link
className="button button--primary-right button--lg"
to="/faq">
FAQ →
</Link>
</div>
</div>
Expand Down

0 comments on commit d0e7a89

Please sign in to comment.