Aimpress_site/index.html
Vadym Samoilenko 67c7ab3289 Initial commit: Aimpress website
React 19 + TypeScript SPA with Vite, mobile responsive fixes,
GitHub Actions CI/CD pipeline for automated deployment.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-08 13:47:37 +00:00

22 lines
755 B
HTML

<!doctype html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-V7408CVBRY"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-V7408CVBRY');
</script>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/logo/favicon-32x32.png" />
<link rel="apple-touch-icon" href="/logo/webclip-256x256.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AImpress</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>