chore: more linter errors

This commit is contained in:
Vasily Zubarev
2025-04-10 11:58:28 +02:00
parent 29a4ac4977
commit d88d0a1174
14 changed files with 67 additions and 62 deletions

View File

@@ -1,3 +1,4 @@
import Head from "next/head"
import React from "react"
interface EmailLayoutProps {
@@ -7,7 +8,7 @@ interface EmailLayoutProps {
export const EmailLayout: React.FC<EmailLayoutProps> = ({ children, preview = "" }) => (
<html>
<head>
<Head>
<meta charSet="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="color-scheme" content="light" />
@@ -49,7 +50,7 @@ export const EmailLayout: React.FC<EmailLayoutProps> = ({ children, preview = ""
`,
}}
/>
</head>
</Head>
<body>
<div className="container">{children}</div>
</body>

View File

@@ -6,7 +6,7 @@ export const NewsletterWelcomeEmail: React.FC = () => (
<h2 style={{ color: "#4f46e5" }}>👋 Welcome to TaxHacker!</h2>
<p style={{ fontSize: "16px", lineHeight: "1.5", color: "#333" }}>
Thank you for subscribing to our updates. We'll keep you updated about:
Thank you for subscribing to our updates. We&apos;ll keep you updated about:
</p>
<ul
style={{

View File

@@ -32,7 +32,7 @@ export const OTPEmail: React.FC<OTPEmailProps> = ({ otp }) => (
</div>
<p style={{ fontSize: "14px", color: "#666", textAlign: "center" }}>This code will expire in 10 minutes.</p>
<p style={{ fontSize: "14px", color: "#666", textAlign: "center" }}>
If you didn't request this code, please ignore this email.
If you didn&apos;t request this code, please ignore this email.
</p>
</EmailLayout>
)