diff --git a/docs/about.html b/docs/about.html
new file mode 100644
index 0000000..88fdafb
--- /dev/null
+++ b/docs/about.html
@@ -0,0 +1,49 @@
+
+
+
+
+
+ 关于kortapp-z
+
+
+
+
+ 关于kortapp-z
+ 了解我们的项目和团队
+
+
+
+
+ 项目简介
+ kortapp-z是一个专为Windows系统设计的实用工具集合,旨在提供一站式的系统优化和管理解决方案。
+ 项目始于2025年,由热爱效率工具的开发者创建。
+
+
+
+ 开发团队
+ 我们的团队由经验丰富的开发人员组成,专注于创建高质量的系统工具。
+
+ - 核心开发者: 1人
+ - UI设计师: 1人
+ - 测试工程师: 1人
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/features.html b/docs/features.html
new file mode 100644
index 0000000..65e70ed
--- /dev/null
+++ b/docs/features.html
@@ -0,0 +1,49 @@
+
+
+
+
+
+ kortapp-z功能详情
+
+
+
+
+ kortapp-z功能详情
+ 探索我们强大的工具集
+
+
+
+
+ 核心功能
+
+
+ 应用程序管理
+ 批量安装、卸载(目前没有)和更新应用程序(目前没有),管理启动项(目前没有)。
+ 优势:集中管理所有应用,节省时间,避免系统臃肿。
+
+
+
+ 资源监控(之后可能在内置工具里有)
+ 实时监控CPU、内存、磁盘和网络使用情况。
+ 优势:直观的图表展示,及时发现资源瓶颈。
+
+
+
+ 文件管理(之后可能在内置工具里有)
+ 高级文件搜索、批量重命名和快速文件分类。
+ 优势:提升文件管理效率,支持正则表达式搜索。
+
+
+
+
+
+
+
+
+
diff --git a/docs/index.html b/docs/index.html
new file mode 100644
index 0000000..708a306
--- /dev/null
+++ b/docs/index.html
@@ -0,0 +1,42 @@
+
+
+
+
+
+ kortapp-z - Windows实用工具
+
+
+
+
+ 欢迎使用kortapp-z
+ 您的一站式Windows实用工具
+
+
+
+
+ 主要功能
+
+ - 内置工具
+ - 应用程序下载
+ - 更多实用功能
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/script.js b/docs/script.js
new file mode 100644
index 0000000..026022c
--- /dev/null
+++ b/docs/script.js
@@ -0,0 +1,31 @@
+// 页面加载完成后执行
+document.addEventListener('DOMContentLoaded', function() {
+ // 获取当前年份并更新页脚版权信息
+ const yearElement = document.querySelector('footer p');
+ if (yearElement) {
+ const currentYear = new Date().getFullYear();
+ yearElement.textContent = yearElement.textContent.replace('2025', currentYear);
+ }
+
+ // 为所有导航链接添加点击效果
+ const navLinks = document.querySelectorAll('nav a');
+ navLinks.forEach(link => {
+ link.addEventListener('click', function(e) {
+ // 可以在这里添加页面切换动画或其他效果
+ console.log('导航到: ' + this.getAttribute('href'));
+ });
+ });
+
+ // 功能列表项悬停效果
+ const featureItems = document.querySelectorAll('.features li');
+ featureItems.forEach(item => {
+ item.addEventListener('mouseover', function() {
+ this.style.transform = 'translateX(5px)';
+ this.style.transition = 'transform 0.3s ease';
+ });
+
+ item.addEventListener('mouseout', function() {
+ this.style.transform = '';
+ });
+ });
+});
diff --git a/docs/style.css b/docs/style.css
new file mode 100644
index 0000000..0ffcbcb
--- /dev/null
+++ b/docs/style.css
@@ -0,0 +1,71 @@
+/* 全局样式 */
+body {
+ font-family: 'Microsoft YaHei', sans-serif;
+ line-height: 1.6;
+ margin: 0;
+ padding: 0;
+ color: #333;
+ background-color: #f5f5f5;
+}
+
+/* 页眉样式 */
+header {
+ background-color: #2c3e50;
+ color: white;
+ text-align: center;
+ padding: 2rem 0;
+}
+
+header h1 {
+ margin: 0;
+ font-size: 2.5rem;
+}
+
+header p {
+ margin: 0.5rem 0 0;
+ font-size: 1.2rem;
+}
+
+/* 主体内容样式 */
+main {
+ max-width: 1200px;
+ margin: 2rem auto;
+ padding: 0 1rem;
+}
+
+section {
+ background: white;
+ border-radius: 5px;
+ box-shadow: 0 2px 5px rgba(0,0,0,0.1);
+ padding: 2rem;
+ margin-bottom: 2rem;
+}
+
+h2 {
+ color: #2c3e50;
+ border-bottom: 2px solid #eee;
+ padding-bottom: 0.5rem;
+}
+
+/* 链接样式 */
+a {
+ color: #3498db;
+ text-decoration: none;
+}
+
+a:hover {
+ text-decoration: underline;
+}
+
+/* 页脚样式 */
+footer {
+ text-align: center;
+ padding: 1rem 0;
+ background-color: #2c3e50;
+ color: white;
+}
+
+footer nav a {
+ color: white;
+ margin: 0 1rem;
+}