Skip to content

Commit

Permalink
Add line above footer on splash component
Browse files Browse the repository at this point in the history
With the new sitemap at the top of the footer, it makes more sense to
render this on not only GenericPage but also pages that use Splash.
  • Loading branch information
victorlin committed May 28, 2024
1 parent aa9d245 commit 69c3b5d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion static-site/src/components/splash/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import communityDatasets from "../../../content/community-datasets.yaml";
import narrativeCards from "../Cards/narrativeCards";
import Title from "./title";
import * as Styles from "./styles";
import { SmallSpacer, BigSpacer, HugeSpacer, FlexCenter } from "../../layouts/generalComponents";
import { SmallSpacer, BigSpacer, HugeSpacer, FlexCenter, Line } from "../../layouts/generalComponents";
import Footer from "../Footer";
import { createGroupCards } from "./groupCards";
import { UserContext } from "../../layouts/userDataWrapper";
Expand Down Expand Up @@ -204,6 +204,7 @@ class Splash extends React.Component {
</Styles.Button>
</FlexCenter>

<Line style={{ margin: "30px 0px 10px 0px" }} />
<Footer splashImagesCredit/>

</Styles.Container>
Expand Down

0 comments on commit 69c3b5d

Please sign in to comment.