-
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.
- Loading branch information
1 parent
2320aa4
commit d431347
Showing
19 changed files
with
742 additions
and
409 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 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,11 @@ | ||
@import "../../constants.module.scss"; | ||
|
||
.footer { | ||
@include primary-style; | ||
width: 100%; | ||
font-size: 20px; | ||
line-height: 1.5; | ||
margin-top: $spacing; | ||
text-align: center; | ||
padding: 4rem 2rem; | ||
} |
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,12 @@ | ||
import styles from "./footer.module.scss"; | ||
|
||
export default function Footer() { | ||
return ( | ||
<footer className={styles.footer}> | ||
Email at <a href="mailto:[email protected]">[email protected]</a>{" "} | ||
or call at (215) 880-9592 | ||
<br /> | ||
Updated December 1<sup>st</sup>, 2024 | ||
</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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* colors */ | ||
$primary-color: #26768b; | ||
$font-color: white; | ||
$link-color: #46daff; | ||
$background-color: #0e2f37; | ||
$card-label-color: #26768bcc; | ||
$shadow-color: #00000055; | ||
|
||
/* card heights */ | ||
$card-height: 20rem; | ||
$medium-card-height: 17.5rem; | ||
$small-card-height: 15rem; | ||
$mobile-card-height: 70vmin; | ||
$mobile-small-card-height: calc(70vmin / 2); | ||
|
||
/* font sizes */ | ||
$small-font-size: 12px; | ||
$regular-font-size: 16px; | ||
$medium-font-size: 20px; | ||
$large-font-size: 24px; | ||
|
||
/* sizing */ | ||
$spacing: 1rem; | ||
$border-radius: 0.5rem; | ||
$min-width: 60rem; | ||
$profile-size: 20rem; | ||
$small-profile-size: 16rem; | ||
$box-shadow: 4px 4px 4px $shadow-color; | ||
|
||
:export { | ||
spacing: $spacing; | ||
} | ||
|
||
@mixin primary-style { | ||
background-color: $primary-color; | ||
border-radius: $border-radius; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
@import "./constants.module.scss"; | ||
|
||
* { | ||
box-sizing: border-box; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
html, | ||
body { | ||
max-width: 100vw; | ||
background-color: $background-color; | ||
color: $font-color; | ||
} | ||
|
||
a { | ||
color: $link-color; | ||
text-decoration: none; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
@import "./constants.module.scss"; | ||
|
||
.main { | ||
max-width: 80rem; | ||
width: 100%; | ||
padding: 0 $spacing; | ||
margin: $spacing auto; | ||
} |
Oops, something went wrong.