Files
doc_ai_frontend/index.html

95 lines
4.2 KiB
HTML
Raw Permalink 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" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2026-02-25 15:47:23 +08:00
<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/" />
2026-02-25 15:47:23 +08:00
<link rel="alternate" hreflang="en" href="https://texpixel.com/en/" />
2026-02-05 18:22:30 +08:00
<link rel="alternate" hreflang="x-default" href="https://texpixel.com/" />
<!-- Dynamic Title (will be updated by app) -->
<title>⚡️ TexPixel - 公式识别工具 | Formula Recognition Tool</title>
2025-12-22 17:37:41 +08:00
2026-02-05 18:22:30 +08:00
<!-- SEO Meta Tags - Chinese (Default) -->
<meta name="description" content="在线公式识别工具支持印刷体和手写体数学公式识别快速准确地将图片中的数学公式转换为可编辑文本。Online formula recognition tool supporting printed and handwritten math formulas." />
2025-12-22 17:37:41 +08:00
<meta name="keywords"
2026-02-05 18:22:30 +08:00
content="公式识别,数学公式,OCR,手写公式识别,印刷体识别,AI识别,数学工具,免费,formula recognition,math formula,handwriting recognition,latex,mathml,markdown,texpixel,TexPixel,混合文字识别,document recognition" />
2025-12-22 17:37:41 +08:00
<meta name="author" content="TexPixel Team" />
<meta name="robots" content="index, follow" />
2026-02-05 18:22:30 +08:00
<!-- Open Graph Meta Tags - Bilingual -->
<meta property="og:title" content="TexPixel - 公式识别工具 | Formula Recognition Tool" />
<meta property="og:description" content="在线公式识别工具支持印刷体和手写体数学公式识别。Online formula recognition tool supporting printed and handwritten math formulas." />
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/logo.png?x-oss-process=image/resize,w_600" />
2026-02-05 18:22:30 +08:00
<meta property="og:locale" content="zh_CN" />
<meta property="og:locale:alternate" content="en_US" />
<meta property="og:site_name" content="TexPixel" />
2025-12-22 17:37:41 +08:00
2026-02-05 18:22:30 +08:00
<!-- Twitter Card Meta Tags - Bilingual -->
2025-12-22 17:37:41 +08:00
<meta name="twitter:card" content="summary_large_image" />
2026-02-05 18:22:30 +08:00
<meta name="twitter:title" content="TexPixel - Formula Recognition Tool | 公式识别工具" />
<meta name="twitter:description" content="Online formula recognition tool supporting printed and handwritten math formulas. 支持印刷体和手写体数学公式识别。" />
2025-12-22 17:37:41 +08:00
<meta name="twitter:image" content="https://cdn.texpixel.com/public/logo.png?x-oss-process=image/resize,w_600" />
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" />
2026-02-25 15:47:23 +08:00
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "TexPixel",
"url": "https://texpixel.com/",
"inLanguage": ["zh-CN", "en"],
"description": "Formula recognition tool for converting images and PDFs into LaTeX, MathML, and Markdown."
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "TexPixel",
"applicationCategory": "BusinessApplication",
"operatingSystem": "Web",
"url": "https://texpixel.com/",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"description": "Online OCR and formula recognition for printed and handwritten mathematical expressions."
}
</script>
2026-02-05 18:22:30 +08:00
<!-- Language Detection Script -->
<script>
// Update HTML lang attribute based on user preference or browser language
(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';
// Update page title based on language
if (!isZh) {
document.title = '⚡️ TexPixel - Formula Recognition Tool';
}
})();
</script>
2025-12-22 17:37:41 +08:00
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
2026-02-25 15:47:23 +08:00
</html>