Skip to content
Open
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
4 changes: 2 additions & 2 deletions components/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ function NN1Button({
<Button
href={href}
style={{
backgroundColor: "#ddc2a5",
color: "#09080d",
backgroundColor: "#09080d",
color: "#f8f7ff",
padding: "13px 26px",
margin: "0 0 26px",
borderRadius: "4px",
Expand Down
2 changes: 1 addition & 1 deletion components/Heading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function NN1Heading({ children }: { children: React.ReactNode }) {
return (
<Text
style={{
color: "#f8f7ff",
color: "#09080d",
margin: "0 0 26px",
fontSize: "16px",
lineHeight: "26px",
Expand Down
2 changes: 1 addition & 1 deletion components/Hr.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ function NN1Hr() {
return (
<Hr
style={{
borderTop: "1px solid #29282e",
borderTop: "1px solid #d9d6df",
margin: "0 0 26px",
}}
/>
Expand Down
9 changes: 7 additions & 2 deletions components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@ import { Img } from "react-email";

const Layout = ({ children }: { children: React.ReactNode }) => (
<Html>
<Head />
<Head>
<meta name="color-scheme" content="light" />
<meta name="supported-color-schemes" content="light" />
</Head>
<Body
style={{
backgroundColor: "#09080d",
backgroundColor: "#ffffff",
color: "#09080d",
fontFamily:
"-apple-system,BlinkMacSystemFont,segoe ui,Helvetica,Arial,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol",
padding: "52px 26px",
Expand All @@ -20,6 +24,7 @@ const Layout = ({ children }: { children: React.ReactNode }) => (
<Container
style={{
maxWidth: "600px",
backgroundColor: "#ffffff",
}}
>
<Img
Expand Down
2 changes: 1 addition & 1 deletion components/Link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function NN1Link({
<Link
href={href}
style={{
color: "#ddc2a5",
color: "#7a4b20",
textDecoration: "underline",
}}
>
Expand Down
6 changes: 3 additions & 3 deletions components/Schedule.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function NN1Text({
<Section key={index} style={{ marginBottom: "26px" }}>
<Text
style={{
color: "#ccc",
color: "#5b5b5b",
margin: "0",
fontSize: "14px",
lineHeight: "26px",
Expand All @@ -24,7 +24,7 @@ function NN1Text({
</Text>
<Text
style={{
color: "#f8f7ff",
color: "#09080d",
margin: "0 ",
fontSize: "16px",
lineHeight: "26px",
Expand All @@ -36,7 +36,7 @@ function NN1Text({
{item.descriptoin ? (
<Text
style={{
color: "#f8f7ff",
color: "#09080d",
margin: "0 ",
fontSize: "16px",
lineHeight: "26px",
Expand Down
2 changes: 1 addition & 1 deletion components/Text.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function NN1Text({ children }: { children: React.ReactNode }) {
return (
<Text
style={{
color: "#f8f7ff",
color: "#2f2b33",
margin: "0 0 26px",
fontSize: "16px",
lineHeight: "26px",
Expand Down