Skip to content

Commit

Permalink
add button to landing page to allow visitor to access dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
vygandas committed Dec 24, 2023
1 parent 7462410 commit 5ab21f4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
13 changes: 13 additions & 0 deletions apps/landing/app/page.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,19 @@ h1.headline {
max-width: 491px;
}

a.cta_dashboard {
padding: 16px 32px;
background-color: #34aadc;
border-radius: 32px;
font-size: 24px;
margin-top: 32px;
}

a.cta_dashboard:hover {
background-color: #0a5675;
color: white;
}

@media screen and (max-width: 768px) {
.content {
padding: 0 32px;
Expand Down
7 changes: 7 additions & 0 deletions apps/landing/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ export default async function Index() {
Modern Developers
</h1>
</a>
<a
href="https://app.isomera.org"
target="_blank"
className={styles.cta_dashboard}
>
Go to Dashboard
</a>
</div>
</div>
)
Expand Down

2 comments on commit 5ab21f4

@vercel
Copy link

@vercel vercel bot commented on 5ab21f4 Dec 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 5ab21f4 Dec 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.