feat(frontend): 添加网站 Logo 和界面预览图片

This commit is contained in:
2977094657
2025-07-31 15:13:13 +08:00
parent 540a0fd823
commit a0302672d2
7 changed files with 26 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
<div align="center">
<img src="logo.png" alt="微信数据库解密工具" width="200">
<img src="frontend/public/logo.png" alt="微信数据库解密工具" width="200">
</div>
# 微信数据库解密工具
@@ -62,6 +62,22 @@ npm run dev
- API服务: http://localhost:8000
- API文档: http://localhost:8000/docs
## 界面预览
### 检测页面
<div align="center">
<img src="检测.jpg" alt="微信检测页面" width="800">
</div>
自动检测微信安装路径和数据库文件位置,支持多账户识别。
### 解密页面
<div align="center">
<img src="解密.jpg" alt="数据库解密页面" width="800">
</div>
输入解密密钥,选择数据库文件进行批量解密操作。
## 使用指南
### 获取解密密钥

View File

@@ -26,6 +26,9 @@ export default defineNuxtConfig({
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ name: 'description', content: '微信4.x版本数据库解密工具' }
],
link: [
{ rel: 'icon', type: 'image/png', href: '/logo.png' }
]
},
pageTransition: { name: 'page', mode: 'out-in' }

View File

@@ -10,8 +10,13 @@
<!-- 主要内容区域 -->
<div class="relative z-10 text-center">
<!-- 标题部分 -->
<!-- Logo和标题部分 -->
<div class="mb-12 animate-fade-in">
<!-- Logo -->
<div class="flex justify-center mb-8">
<img src="/logo.png" alt="微信解密助手Logo" class="w-48 h-48 object-contain">
</div>
<h1 class="text-5xl font-bold text-[#000000e6] mb-4">
<span class="bg-gradient-to-r from-[#07C160] to-[#10AEEF] bg-clip-text text-transparent">微信</span>
<span class="text-[#000000e6]">解密助手</span>

BIN
frontend/public/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

BIN
logo.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 MiB

BIN
检测.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 532 KiB

BIN
解密.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 454 KiB