移除无用,迁移

This commit is contained in:
2026-06-18 21:03:46 +08:00 Unverified
parent 63a10dd59e
commit d98d2989cb
20 changed files with 405 additions and 406 deletions
+62
View File
@@ -0,0 +1,62 @@
---
import BaseLayout from '@/layouts/BaseLayout.astro';
import PageHeaderCard from '@/components/PageHeaderCard.astro';
---
<BaseLayout title="Cookies" description="Bi's Blog 的 Cookie 与本地存储说明。">
<section class="content-wrap narrow page-with-card native-page">
<PageHeaderCard title="Cookies" subtitle="说明本站如何使用 Cookie 与浏览器本地存储。" />
</section>
<article class="article page-article native-page-article">
<div class="prose">
<p>
本站会使用少量 Cookie 或 LocalStorage 来保存主题偏好、改善访问体验,并辅助完成评论、防滥用和统计分析等功能。
本页面应与 <a href="/privacy/">隐私政策</a> 一起阅读。
</p>
<h2>什么是 Cookies</h2>
<p>
Cookies 是网站保存在浏览器中的小型文本数据。它可以帮助网站识别同一浏览器、记住你的偏好,或让某些功能保持可用。
</p>
<h2>本站使用目的</h2>
<div class="native-table-wrap">
<table>
<thead>
<tr>
<th>类型</th>
<th>用途</th>
</tr>
</thead>
<tbody>
<tr>
<td>偏好设置</td>
<td>保存深色/浅色主题等本地偏好。</td>
</tr>
<tr>
<td>安全与防滥用</td>
<td>辅助识别异常访问、恶意请求和垃圾评论。</td>
</tr>
<tr>
<td>评论服务</td>
<td>评论系统可能会保存昵称、邮箱、头像等你主动填写的信息。</td>
</tr>
<tr>
<td>访问分析</td>
<td>了解页面访问情况,用于优化文章和站点性能。</td>
</tr>
</tbody>
</table>
</div>
<h2>如何管理</h2>
<p>
你可以随时在浏览器设置中清除或禁用 Cookie 与站点数据。禁用后,评论、主题偏好、统计等功能可能无法按预期工作,但不影响阅读文章。
</p>
<h2>联系</h2>
<p>如果你对 Cookie 使用方式有疑问,可以发送邮件至 <a href="mailto:bishsh2006@gmail.com">bishsh2006@gmail.com</a>。</p>
</div>
</article>
</BaseLayout>