Fix app name phrasing and refresh blog seed dates
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled

This commit is contained in:
Codex Agent
2026-01-04 12:20:19 +01:00
parent fae5ec26fb
commit 1afd49bd24
16 changed files with 66 additions and 50 deletions

View File

@@ -1,21 +1,23 @@
@extends('emails.partials.layout')
@section('title', __('emails.welcome.subject', ['name' => $user->fullName]))
@php($appName = config('app.name'))
@section('title', __('emails.welcome.subject', ['name' => $user->fullName, 'app_name' => $appName]))
@section('preheader', __('emails.welcome.subtitle'))
@section('hero_title', __('emails.welcome.greeting', ['name' => $user->fullName]))
@section('hero_title', __('emails.welcome.greeting', ['name' => $user->fullName, 'app_name' => $appName]))
@section('hero_subtitle', __('emails.welcome.subtitle'))
@section('content')
<p style="margin:0 0 12px; font-size:15px; color:#1f2937;">
{{ __('emails.welcome.body') }}
{{ __('emails.welcome.body', ['app_name' => $appName]) }}
</p>
<div style="background-color:#f8fafc; border:1px solid #e2e8f0; border-radius:12px; padding:16px; margin-bottom:16px;">
<p style="margin:0 0 6px; font-size:13px; text-transform:uppercase; letter-spacing:0.08em; color:#64748b;">
{{ __('emails.welcome.account_label') }}
</p>
<p style="margin:0; font-size:14px; color:#0f172a;">
{{ __('emails.welcome.username', ['username' => $user->username]) }}<br>
{{ __('emails.welcome.email', ['email' => $user->email]) }}
{{ __('emails.welcome.username', ['username' => $user->username, 'app_name' => $appName]) }}<br>
{{ __('emails.welcome.email', ['email' => $user->email, 'app_name' => $appName]) }}
</p>
</div>
<p style="margin:0 0 16px; font-size:14px; color:#1f2937;">