All checks were successful
Deploy SOLUTION_ERP / build-deploy (push) Successful in 3m4s
Pipeline: - Pixel-crop chữ 'S' script từ logo.png (x=0..86, y=0..100 — trước underline + tagline) - Scale lên 2x thành 172x200 trên canvas 256x256 transparent, center có padding ~12% - Save thành mark.png (6.8KB, transparent bg) - Embed base64 vào favicon.svg với nền trắng rounded-r-48 (contrast với chữ S xanh brand) — scale mọi size - index.html thêm apple-touch-icon + alternate PNG cho browsers không support SVG favicon Kết quả: favicon giờ là glyph 'S' script thật của Solutions, không phải font-rendered text nữa. Contrast trắng-xanh dễ nhận ra ở size nhỏ. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
20 lines
778 B
HTML
20 lines
778 B
HTML
<!doctype html>
|
|
<html lang="vi">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<link rel="alternate icon" type="image/png" href="/mark.png" />
|
|
<link rel="apple-touch-icon" href="/mark.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="theme-color" content="#1F7DC1" />
|
|
<meta name="description" content="Solutions ERP — Quản lý hợp đồng nhà cung cấp" />
|
|
<title>Solutions ERP</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|