Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

move the landing page call-to-action above the fold #261

Merged
merged 3 commits into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions query-connector/src/app/page.module.scss
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
.pageSubtitle {
margin: 2rem 0 0.5rem 0;
margin: 2rem 0 0.5rem 0;
}

.pageSubtitle:last-of-type{
margin-top: 1.5rem;
.pageSubtitle:last-of-type {
margin-top: 1.5rem;
}

.pageContent {
font-weight: 300;
margin-top: 0;
font-size:1rem;
margin-bottom: 0.5rem
}
font-weight: 300;
margin-top: 0;
font-size: 1rem;
margin-bottom: 1rem;
}
27 changes: 9 additions & 18 deletions query-connector/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@ export default function LandingPage() {
network of healthcare providers through your existing data use
agreements, giving you access to more complete and timely data
</h2>

<Button
className="next-button margin-bottom-2"
type="button"
id="next-button"
onClick={() => handleGoToDemo()}
>
Try it out
</Button>
</div>
<Image
alt="Graphic illustrating what TEFCA is"
Expand Down Expand Up @@ -81,24 +90,6 @@ export default function LandingPage() {
</ProcessListItem>
</ProcessList>
</div>
<div className="blue-background-container">
<div className="flex-justify-center flex-column">
<div className="text-holder">
<h2 className="font-sans-xs text-light margin-top-0">
Check out the Query Connector demo to try out features using
sample data.
</h2>
<Button
className="next-button"
type="button"
id="next-button"
onClick={() => handleGoToDemo()}
>
Go to the demo
</Button>
</div>
</div>
</div>
</div>
);
}
Loading