Skip to content

Commit

Permalink
Added aditional signup button on landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
radu-constantin committed Feb 24, 2024
1 parent 9e1897e commit 4094a51
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/frontend/src/pages/LandingPage/LandingPage.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ img {
}

.home {
gap: 60px;
gap: 30px;
}
}

Expand Down
7 changes: 5 additions & 2 deletions apps/frontend/src/pages/LandingPage/LandingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export default function LandingPage() {
duration: 600,
});

ScrollReveal().reveal('[class*="signupBtn"]', {
ScrollReveal().reveal('[class*="home"]', {
delay: 800,
easing: 'ease-in',
origin: 'top',
Expand All @@ -116,7 +116,7 @@ export default function LandingPage() {
return (
<div className={styles.wrapper}>
<Navbar className={styles.header} expand="lg" sticky="top">
<Navbar.Brand href="#home">
<Navbar.Brand href="#home" className={styles.logo}>
<i className="fa-solid fa-people-roof"></i>
<span> Neighborhood</span>
</Navbar.Brand>
Expand Down Expand Up @@ -156,6 +156,9 @@ export default function LandingPage() {
and support? Introducing Neighborhood, the social-media app designed to foster
meaningful connections, and build a stronger, more closely associated community.
</p>
<CustomBtn className={styles.btn} variant="primary">
Sign Up
</CustomBtn>
</div>

<div className={styles.imageContainer}>
Expand Down

0 comments on commit 4094a51

Please sign in to comment.