change html
This commit is contained in:
@@ -0,0 +1,123 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>MassiveEdit - Large File Text Editor</title>
|
||||
<meta
|
||||
name="description"
|
||||
content="MassiveEdit is a high-performance large-file text editor developed by Five Questions (Beijing) Technology Co., Ltd."
|
||||
/>
|
||||
<script>
|
||||
(function () {
|
||||
try {
|
||||
var t = localStorage.getItem("massiveedit-theme-mode") || "auto";
|
||||
if (t !== "light" && t !== "dark") t = "auto";
|
||||
document.documentElement.setAttribute("data-theme", t);
|
||||
} catch (e) {}
|
||||
})();
|
||||
</script>
|
||||
<link rel="stylesheet" href="../site.css" />
|
||||
</head>
|
||||
<body>
|
||||
<header class="hero">
|
||||
<div class="wrap">
|
||||
<div class="topbar">
|
||||
<div class="brand"><span class="dot"></span>MassiveEdit</div>
|
||||
<nav class="topnav">
|
||||
<a class="active" href="./index.html">Home</a>
|
||||
<a href="./download.html">Download</a>
|
||||
<a href="./changelog.html">Changelog</a>
|
||||
<a href="./privacy.html">Privacy</a>
|
||||
<a href="https://github.com/paineliu/massiveedit" target="_blank" rel="noopener noreferrer">GitHub</a>
|
||||
<a href="../index.html" data-lang-switch="zh">中</a>
|
||||
<div class="theme-switch" role="group" aria-label="Theme">
|
||||
<button type="button" data-theme-mode="auto" aria-pressed="false">Auto</button>
|
||||
<button type="button" data-theme-mode="light" aria-pressed="false">Light</button>
|
||||
<button type="button" data-theme-mode="dark" aria-pressed="false">Dark</button>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
<div class="hero-grid">
|
||||
<div>
|
||||
<p class="eyebrow">Large File Editor · v1.0.2</p>
|
||||
<h1>Built for Massive Text Files</h1>
|
||||
<p class="lead">
|
||||
MassiveEdit is a Qt-based large-file text editor focused on startup speed, smooth scrolling, and reliable editing behavior.<br />
|
||||
Maintained by Five Questions (Beijing) Technology Co., Ltd.
|
||||
</p>
|
||||
<div class="cta">
|
||||
<a class="btn btn-primary" href="./download.html">Get Downloads</a>
|
||||
<a class="btn btn-ghost" href="./changelog.html">See Changelog</a>
|
||||
</div>
|
||||
</div>
|
||||
<aside class="hero-panel">
|
||||
<div class="kpi">
|
||||
<div class="kpi-item"><strong>C++20</strong><span>Core Language</span></div>
|
||||
<div class="kpi-item"><strong>Qt 6</strong><span>Cross-platform UI</span></div>
|
||||
<div class="kpi-item"><strong>MIT</strong><span>Open-source License</span></div>
|
||||
<div class="kpi-item"><strong>Win / macOS / Linux</strong><span>Platform Coverage</span></div>
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main class="wrap">
|
||||
<section>
|
||||
<h2 class="title">Core Capabilities</h2>
|
||||
<p class="sub">Designed for readability, search, and editing on very large text files with responsive interaction.</p>
|
||||
<div class="grid-3">
|
||||
<article class="card">
|
||||
<h3>Fast Large-file Loading</h3>
|
||||
<p>Chunked reading and caching reduce full-load wait time and keep scrolling smooth.</p>
|
||||
</article>
|
||||
<article class="card">
|
||||
<h3>Incremental Index & Search</h3>
|
||||
<p>Async search and result navigation keep large datasets practical to work with.</p>
|
||||
</article>
|
||||
<article class="card">
|
||||
<h3>Reliable Editing Base</h3>
|
||||
<p>Undo/redo, encoding controls, and line-ending management provide a stable foundation.</p>
|
||||
</article>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2 class="title">More Pages</h2>
|
||||
<p class="sub">Downloads, release history, and privacy details are separated for easy navigation.</p>
|
||||
<div class="grid-3">
|
||||
<article class="card"><h3>Downloads</h3><p><a href="./download.html">Platform packages</a> and installation notes.</p></article>
|
||||
<article class="card"><h3>Changelog</h3><p><a href="./changelog.html">Version changes</a> and fixes.</p></article>
|
||||
<article class="card"><h3>Privacy</h3><p><a href="./privacy.html">Data handling statement</a> and contact info.</p></article>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2 class="title">Contact</h2>
|
||||
<p class="sub">For support, business inquiries, or feature suggestions:</p>
|
||||
<div class="contact">
|
||||
<article class="card">
|
||||
<h3>Email</h3>
|
||||
<a href="mailto:support@fivequestions.cn">support@fivequestions.cn</a>
|
||||
<span class="line">Include OS version, repro steps, and screenshots when possible.</span>
|
||||
</article>
|
||||
<article class="card">
|
||||
<h3>Phone</h3>
|
||||
<a href="tel:+8613661144700">+86 13661144700</a>
|
||||
<span class="line">Business hours: Mon-Fri 9:00-18:00 (UTC+8).</span>
|
||||
</article>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<div class="wrap">
|
||||
<div>Five Questions (Beijing) Technology Co., Ltd.</div>
|
||||
<div><a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer">京ICP备2025143052号</a></div>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="../theme.js"></script>
|
||||
<script src="../lang.js" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user