* chore: add husky pre-commit and pre-push hooks * feat: frontend audit — formulário de contato, a11y, SEO, performance e conteúdo * test: regenerate visual baselines from CI environment
26 lines
773 B
PHP
26 lines
773 B
PHP
<!DOCTYPE html>
|
|
<html lang="pt-BR">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Recebemos sua mensagem</title>
|
|
<style>
|
|
body { margin: 0; padding: 24px; background: #FBF9F4; font-family: Georgia, 'Times New Roman', serif; color: #1B1C19; }
|
|
.wrap { max-width: 600px; margin: 0 auto; }
|
|
p { font-size: 15px; line-height: 1.6; }
|
|
.signature { margin-top: 24px; color: #5D6155; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="wrap">
|
|
<p>Olá, {{ $name }}.</p>
|
|
<p>
|
|
Recebemos sua mensagem e retornaremos em breve pelo canal informado.
|
|
</p>
|
|
<p class="signature">
|
|
{{ $brandName }}
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|