-
-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1432 from codeforboston/main
2/6/24 Merge from Main -> Prod
- Loading branch information
Showing
201 changed files
with
12,364 additions
and
16,331 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 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 |
---|---|---|
|
@@ -10,4 +10,6 @@ exportedTestData | |
dist.yml | ||
analysis/data | ||
dist | ||
*.handlebars | ||
*.handlebars | ||
coverage | ||
storybook-static |
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 |
---|---|---|
@@ -1 +1 @@ | ||
nodejs 16.18.0 | ||
nodejs 18.17.0 |
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.
105 changes: 0 additions & 105 deletions
105
components/AdditionalResources/AdditionalResourcesCard.module.css
This file was deleted.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
components/AdditionalResources/AdditionalResourcesCard.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,19 @@ | ||
import { Card } from "../bootstrap" | ||
// import { Card } from "../Card/Card" | ||
import { FC, PropsWithChildren } from "react" | ||
import { CardProps } from "react-bootstrap" | ||
|
||
const AdditionalResourcesCard: FC<PropsWithChildren<CardProps>> = ({ | ||
children, | ||
...rest | ||
}) => { | ||
return ( | ||
<Card | ||
className={`m-4 py-2 px-4 text-bg-light rounded-4 d-flex align-items-center align-items-sm-start`} | ||
> | ||
{children} | ||
</Card> | ||
) | ||
} | ||
|
||
export default AdditionalResourcesCard |
19 changes: 0 additions & 19 deletions
19
components/AdditionalResources/AdditionalResourcesCardContent.js
This file was deleted.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
components/AdditionalResources/AdditionalResourcesCardContent.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,13 @@ | ||
import { FC, PropsWithChildren } from "react" | ||
|
||
const AdditionalResourcesCardContent: FC<PropsWithChildren<{}>> = ({ | ||
children | ||
}) => { | ||
return ( | ||
<div className={`d-flex flex-0 justify-content-xs-center p-4 `}> | ||
<p className={`fs-4`}>{children}</p> | ||
</div> | ||
) | ||
} | ||
|
||
export default AdditionalResourcesCardContent |
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
Oops, something went wrong.