Replace 'BroadcastBeat' with 'Broadcast Beat' in all user-visible text (133 occurrences across 40+ files)

This commit is contained in:
broadcastbeat-rename
2026-05-16 00:32:13 +00:00
parent 959e3980ae
commit 0db3ea34e3
52 changed files with 133 additions and 133 deletions

View File

@@ -37,7 +37,7 @@ export async function POST(req: NextRequest) {
const smtpUser = process.env.SMTP_USER;
const smtpPass = process.env.SMTP_PASS;
const fromEmail = process.env.SMTP_FROM_EMAIL || smtpUser;
const fromName = process.env.SMTP_FROM_NAME || 'BroadcastBeat';
const fromName = process.env.SMTP_FROM_NAME || 'Broadcast Beat';
if (smtpHost && smtpUser && smtpPass) {
const transporter = nodemailer.createTransport({
@@ -54,11 +54,11 @@ export async function POST(req: NextRequest) {
await transporter.sendMail({
from: `"${fromName}" <${fromEmail}>`,
to: email,
subject: `Welcome to BroadcastBeat — You're subscribed!`,
subject: `Welcome to Broadcast Beat — You're subscribed!`,
html: `
<div style="background:#0d1520;padding:40px 20px;font-family:sans-serif;max-width:600px;margin:0 auto;">
<h1 style="color:#3b82f6;font-size:24px;margin-bottom:8px;">You're in!</h1>
<p style="color:#e0e0e0;font-size:16px;">Thanks for subscribing to <strong>BroadcastBeat</strong> — the digital platform for broadcast engineering.</p>
<p style="color:#e0e0e0;font-size:16px;">Thanks for subscribing to <strong>Broadcast Beat</strong> — the digital platform for broadcast engineering.</p>
${topicsList}
<p style="color:#aaa;font-size:14px;margin-top:24px;">You'll be the first to know about the latest news, product launches, and industry insights.</p>
<hr style="border:none;border-top:1px solid #1e3a5f;margin:32px 0;" />