-
Notifications
You must be signed in to change notification settings - Fork 2
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 #305 from nulib/deploy/staging
Production push
- Loading branch information
Showing
3 changed files
with
18 additions
and
17 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
File renamed without changes.
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 |
---|---|---|
|
@@ -2,14 +2,14 @@ import { | |
MessageContent, | ||
MessageStyled, | ||
MessageText, | ||
MessageTitle, | ||
} from "@/components/Shared/Message/Message.styled"; | ||
} from "@/components/Footer/SiteContentMessage/SiteContentMessage.styled"; | ||
import { useEffect, useState } from "react"; | ||
|
||
import { Button } from "@nulib/design-system"; | ||
import Container from "@/components/Shared/Container"; | ||
import useSessionStorage from "@/hooks/useSessionStorage"; | ||
|
||
const Message = () => { | ||
const SiteContentMessage = () => { | ||
const current = Date.now() / 1000; | ||
const interval = 86400; // 24 hours | ||
|
||
|
@@ -43,20 +43,19 @@ const Message = () => { | |
<Container> | ||
<MessageContent> | ||
<div> | ||
<MessageTitle>Potentially harmful content</MessageTitle> | ||
<MessageText> | ||
Northwestern University Libraries Digital Collections contain | ||
materials that reflect the beliefs and norms of the era and | ||
culture in which they were created or collected. The site contains | ||
offensive imagery, language, or opinions related to a white | ||
supremist, exploitative, and/or discriminatory culture. | ||
Additionally, this site contains sexual content or violence that | ||
may not be appropriate for all audiences. The Libraries are | ||
committed to the ethical digitization and description of materials | ||
that offer alternative histories and center voices from | ||
marginalized cultures. If you have questions or concerns about the | ||
materials, please refer to our “Retention of Challenged Materials” | ||
policy with more information about how to contact us. | ||
Northwestern University Libraries' Digital Collections | ||
contain materials that reflect the beliefs and norms of their eras | ||
and culture in which they were created or collected. The site may | ||
contain imagery, language, or opinions that are offensive and may | ||
not be appropriate for all audiences. The Libraries are committed | ||
to the ethical digitization and description of materials that | ||
offer alternative histories and center voices from marginalized | ||
cultures. Please direct questions to{" "} | ||
<a href="mailto:[email protected]"> | ||
[email protected] | ||
</a> | ||
. | ||
</MessageText> | ||
</div> | ||
<div> | ||
|
@@ -69,4 +68,4 @@ const Message = () => { | |
</MessageStyled> | ||
); | ||
}; | ||
export default Message; | ||
export default SiteContentMessage; |