Files
doc_ai_frontend/index.html

105 lines
4.4 KiB
HTML
Raw Normal View History

2025-12-22 17:37:41 +08:00
<!doctype html>
2026-02-05 18:22:30 +08:00
<html lang="zh-CN">
2025-12-22 17:37:41 +08:00
<head>
<meta charset="UTF-8" />
2026-03-25 11:14:55 +08:00
<link rel="icon" type="image/svg+xml" href="/texpixel-icon-1024.svg" />
<link rel="icon" type="image/png" href="/favicon.png" />
2026-03-25 11:14:55 +08:00
<link rel="apple-touch-icon" href="/texpixel-icon-1024.svg" />
<link rel="manifest" href="/site.webmanifest" />
2025-12-22 17:37:41 +08:00
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- hreflang: same URL serves both languages (SPA), point both to canonical -->
<link rel="canonical" href="https://texpixel.com/" />
2026-02-05 18:22:30 +08:00
<link rel="alternate" hreflang="zh-CN" href="https://texpixel.com/" />
<link rel="alternate" hreflang="en" href="https://texpixel.com/" />
2026-02-05 18:22:30 +08:00
<link rel="alternate" hreflang="x-default" href="https://texpixel.com/" />
2025-12-22 17:37:41 +08:00
<!-- Title -->
<title>TexPixel - AI Math Formula Recognition | LaTeX, MathML OCR Tool</title>
<!-- SEO Meta Tags -->
<meta name="description" content="Free AI-powered math formula recognition tool. Convert handwritten or printed math formulas in images to LaTeX, MathML, and Markdown instantly. Supports PDF and image files." />
<meta name="keywords" content="math formula recognition,LaTeX OCR,handwriting math recognition,formula to latex,math OCR,MathML converter,handwritten equation recognition,公式识别,数学公式OCR,手写公式识别,LaTeX转换,texpixel" />
2025-12-22 17:37:41 +08:00
<meta name="author" content="TexPixel Team" />
<meta name="robots" content="index, follow" />
<!-- Open Graph -->
<meta property="og:title" content="TexPixel - AI Math Formula Recognition Tool" />
<meta property="og:description" content="Free AI-powered tool to convert handwritten or printed math formulas to LaTeX, MathML, and Markdown. Upload an image or PDF and get results instantly." />
2025-12-22 17:37:41 +08:00
<meta property="og:type" content="website" />
<meta property="og:url" content="https://texpixel.com/" />
<meta property="og:image" content="https://cdn.texpixel.com/public/og-cover.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:locale" content="en_US" />
<meta property="og:locale:alternate" content="zh_CN" />
2026-02-05 18:22:30 +08:00
<meta property="og:site_name" content="TexPixel" />
2025-12-22 17:37:41 +08:00
<!-- Twitter Card -->
2025-12-22 17:37:41 +08:00
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="TexPixel - AI Math Formula Recognition Tool" />
<meta name="twitter:description" content="Convert handwritten or printed math formulas to LaTeX, MathML, and Markdown for free. Upload image or PDF — results in seconds." />
<meta name="twitter:image" content="https://cdn.texpixel.com/public/og-cover.png" />
2026-02-05 18:22:30 +08:00
<meta name="twitter:site" content="@TexPixel" />
2025-12-22 17:37:41 +08:00
2026-02-05 18:22:30 +08:00
<!-- Baidu Verification -->
2025-12-22 17:37:41 +08:00
<meta name="baidu-site-verification" content="codeva-8zU93DeGgH" />
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "TexPixel",
"url": "https://texpixel.com/",
"description": "AI-powered math formula recognition tool that converts handwritten or printed formulas in images to LaTeX, MathML, and Markdown.",
"applicationCategory": "UtilitiesApplication",
"operatingSystem": "Web",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"Handwritten math formula recognition",
"Printed formula OCR",
"LaTeX output",
"MathML output",
"Markdown output",
"PDF support",
"Image support"
],
"inLanguage": ["en", "zh-CN"],
"publisher": {
"@type": "Organization",
"name": "TexPixel",
"url": "https://texpixel.com/"
}
}
</script>
2026-02-05 18:22:30 +08:00
<!-- Language Detection Script -->
<script>
(function() {
const savedLang = localStorage.getItem('language');
const browserLang = navigator.language.toLowerCase();
const isZh = savedLang === 'zh' || (!savedLang && browserLang.startsWith('zh'));
document.documentElement.lang = isZh ? 'zh-CN' : 'en';
if (isZh) {
document.title = 'TexPixel - AI 数学公式识别工具 | LaTeX、MathML OCR';
document.querySelector('meta[name="description"]').setAttribute('content',
'免费 AI 数学公式识别工具,支持手写和印刷体公式识别,一键将图片或 PDF 中的数学公式转换为 LaTeX、MathML 和 Markdown 格式。');
2026-02-05 18:22:30 +08:00
}
})();
</script>
2025-12-22 17:37:41 +08:00
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>