use maizzle for email templating, starting with reset password email

This commit is contained in:
m5r
2021-10-26 23:34:21 +02:00
parent 3f279634b6
commit 514dae3ebb
25 changed files with 6069 additions and 508 deletions

View File

@ -10,7 +10,7 @@ const BaseLayout = ({ title, children }: LayoutProps) => {
return (
<>
<Head>
<title>{title || "shellphone.app"}</title>
<title>{title ? `${title} | Shellphone` : "Shellphone"}</title>
<link rel="icon" href="/favicon.ico" />
</Head>