This commit is contained in:
parent
9a4930c23a
commit
792a592eda
|
@ -27,6 +27,7 @@ const webApp = express()
|
||||||
res.send(
|
res.send(
|
||||||
renderHTML(
|
renderHTML(
|
||||||
<Layout>
|
<Layout>
|
||||||
|
<h1>“{name}” Inbox Created</h1>
|
||||||
<Created inbox={inbox}></Created>
|
<Created inbox={inbox}></Created>
|
||||||
</Layout>
|
</Layout>
|
||||||
)
|
)
|
||||||
|
@ -131,7 +132,7 @@ function Layout({ children }: { children: React.ReactNode }) {
|
||||||
sizes="16x16"
|
sizes="16x16"
|
||||||
/>
|
/>
|
||||||
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
||||||
<link rel="stylesheet" type="text/css" href="styles.css" />
|
<link rel="stylesheet" type="text/css" href="/styles.css" />
|
||||||
<title>Kill the Newsletter!</title>
|
<title>Kill the Newsletter!</title>
|
||||||
</head>
|
</head>
|
||||||
<body style={{ textAlign: "center" }}>
|
<body style={{ textAlign: "center" }}>
|
||||||
|
@ -185,7 +186,6 @@ function Form() {
|
||||||
function Created({ inbox: { name, token } }: { inbox: Inbox }) {
|
function Created({ inbox: { name, token } }: { inbox: Inbox }) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<h1>“{name}” Inbox Created</h1>
|
|
||||||
<p>
|
<p>
|
||||||
Sign up for the newsletter with
|
Sign up for the newsletter with
|
||||||
<br />
|
<br />
|
||||||
|
|
Loading…
Reference in New Issue