-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
setup routing and empty state query building pages (#107)
Co-authored-by: Katie Campbell Downie <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Katie Campbell Downie <[email protected]> Co-authored-by: DanPaseltiner <[email protected]> Co-authored-by: Michelle Kang <[email protected]>
- Loading branch information
1 parent
a037e21
commit d8fabbf
Showing
35 changed files
with
601 additions
and
541 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
.pageSubtitle { | ||
margin: 2rem 0 0.5rem 0; | ||
} | ||
|
||
.pageSubtitle:last-of-type{ | ||
margin-top: 1.5rem; | ||
} | ||
|
||
.pageContent { | ||
font-weight: 300; | ||
margin-top: 0; | ||
font-size:1rem; | ||
margin-bottom: 0.5rem | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
query-connector/src/app/query/components/footer/footer.module.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
@use "../../../../styles/_variables" as *; | ||
|
||
.footerContainer { | ||
height: 5rem; | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
background-color: $primary-darker; | ||
} | ||
|
||
.footerContainer > div { | ||
flex-grow: 1; | ||
} | ||
|
||
.cdcLogoContainer { | ||
display: flex; | ||
align-items: center; | ||
gap: 0.5rem; | ||
} | ||
|
||
.contactUsContainer { | ||
display: flex; | ||
justify-content: end; | ||
} |
43 changes: 43 additions & 0 deletions
43
query-connector/src/app/query/components/footer/footer.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
import Image from "next/image"; | ||
import styles from "./footer.module.scss"; | ||
import classNames from "classnames"; | ||
|
||
/** | ||
* Produces the footer. | ||
* @returns The footer component. | ||
*/ | ||
export default function FooterComponent() { | ||
return ( | ||
<footer className={classNames("usa-footer", styles.footerContainer)}> | ||
<div className={styles.cdcLogoContainer}> | ||
<div> | ||
<Image | ||
src="/tefca-viewer/CDC_logo.png" | ||
alt="CDC logo" | ||
width={62} | ||
height={36} | ||
className="usa-footer__logo-img" | ||
/> | ||
</div> | ||
<div> | ||
<p className="text-base-lightest-important"> | ||
Centers for Disease Control and Prevention | ||
</p> | ||
</div> | ||
</div> | ||
<div className={styles.contactUsContainer}> | ||
<div className="width-fit-content"> | ||
<p className="text-base-lightest-important"> | ||
For more information about this solution, send us an email at{" "} | ||
<a | ||
className="text-base-lightest-important" | ||
href="mailto:[email protected]" | ||
> | ||
[email protected] | ||
</a> | ||
</p> | ||
</div> | ||
</div> | ||
</footer> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.