Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions backend/src/lambda/email-processor/emails/email-template.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,18 @@ export default function DisasterEmail({ message }: DisasterEmailProps) {
</table>

<Text className="text-[15px] leading-6 mb-8">
Please review this alert and take necessary precautions. For more information about this
disaster and available assistance, visit{" "}
<a href="https://fema.gov" className="font-semibold underline text-black">
Please review this alert and take necessary precautions. Please register with FEMA as
soon as possible at{" "}
<a
href="https://www.disasterassistance.gov/"
className="font-semibold underline text-black"
>
DisasterAssistance.gov
</a>
. See more information at{" "}
<a href="https://www.fema.gov/" className="font-semibold underline text-black">
FEMA.gov
</a>
.
</Text>

<Text className="text-base mb-8">Stay safe,</Text>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ const getTagColor = (tag: string) => {
hash = tag.charCodeAt(i) + ((hash << 5) - hash);
}

const hue = hash % 60;
const hue = hash % 360;

return {
backgroundColor: `hsl(${hue}, 60%, 85%)`,
Expand Down
Loading