diff --git a/.trellis/tasks/04-30-product-website/prd.md b/.trellis/tasks/04-30-product-website/prd.md
new file mode 100644
index 0000000..4389b2d
--- /dev/null
+++ b/.trellis/tasks/04-30-product-website/prd.md
@@ -0,0 +1,150 @@
+# PRD: Product Website & Privacy Policy for App Store
+
+## 1. 需求概述
+
+为 MeeYao Divination (觅爻签问) iOS 应用创建一个产品技术网站,满足 Apple App Store 审核对 Support URL 和 Privacy Policy URL 的要求。
+
+**核心目标**:
+- 提供 App Store 审核所需的公开网站(Support URL + Privacy Policy URL)
+- 展示产品信息,建立可信度
+- 隐私政策页面完整、合规
+
+## 2. 背景与合规要求
+
+### App Store 审核要求
+- **Guideline 1.5**: app 和 Support URL 必须包含方便用户联系的方式
+- **Guideline 2.1**: 提交审核时所有 URL 必须完整可用,不接受占位内容或空网站
+- **Guideline 5.1**: 涉及个人数据收集的 app 必须提供隐私政策,且链接在 App Store Connect 中填写
+- **App Store Connect**: 自 2018 年 10 月起,所有新 app 和更新必须填写 Privacy Policy URL
+
+### 当前状态
+- 应用隐私政策文本已存在: `apps/assets/legal/{en,zh,zh_Hant}/privacy_policy.md`
+- 应用服务条款已存在: `apps/assets/legal/{en,zh,zh_Hant}/terms_of_service.md`
+- 关于我们已存在: `apps/assets/legal/{en,zh,zh_Hant}/about_us.md`
+- 但尚无公开可访问的网站托管这些内容
+
+## 3. 技术方案
+
+### 3.1 技术栈
+
+- **纯静态 HTML/CSS/JS** (无需构建工具或框架)
+- **Tailwind CSS** via CDN(快速样式开发)
+- **单页面应用**:两个路由通过 hash 路由或简单文件切换实现
+- 部署为静态文件,可托管在任何静态托管服务上
+
+### 3.2 文件结构
+
+```
+web/
+├── index.html # 产品主页 (Support URL 指向此页面)
+├── privacy.html # 隐私政策页 (Privacy Policy URL 指向此页面)
+├── assets/
+│ ├── logo.png # 应用 Logo (从 apps/assets/images/logo.png 复制)
+│ ├── icon-1024.png # App Store 图标 (从 iOS AppIcon 复制)
+│ ├── css/
+│ │ └── style.css # 自定义样式覆盖
+│ └── js/
+│ └── main.js # 交互逻辑(语言切换等)
+└── README.md # 部署说明
+```
+
+### 3.3 路由设计
+
+| 路由 | 对应 App Store 字段 | 用途 |
+|------|---------------------|------|
+| `/` (index.html) | Support URL | 产品介绍、功能说明、联系方式 |
+| `/privacy.html` | Privacy Policy URL | 完整隐私政策文档 |
+
+## 4. 页面设计要求
+
+### 4.1 产品主页 (index.html)
+
+**定位**: Support URL 落地页,用户从 App Store 点击"支持"后到达此页。
+
+**内容板块**:
+1. **Hero 区域**: 应用名称、Logo、一句话描述
+2. **产品介绍**: MeeYao 是什么 - AI 辅助六爻文化参考工具
+3. **核心功能**: 手动起卦、自动起卦、AI 解读、历史记录
+4. **文化背景**: 六爻与易经文化简介
+5. **免责声明**: 娱乐和文化参考用途声明
+6. **联系方式**: 开发者邮箱 ann@xunmee.com
+7. **页脚**: 版权信息、隐私政策链接、服务条款链接
+
+**设计风格**:
+- 与 App 视觉语言一致:紫色品牌色系 (#673AB7, #9C27B0)
+- 安静、可信、温暖的视觉基调
+- 响应式设计,移动端优先
+- 无多余动画,保持简洁专业
+
+### 4.2 隐私政策页 (privacy.html)
+
+**定位**: Privacy Policy URL 落地页,满足 App Store Connect 要求。
+
+**内容**:
+- 直接使用已有的英文隐私政策文本(面向全球用户)
+- 结构化展示:信息收集、使用方式、数据存储、用户权利等
+- 包含最后更新日期
+- 顶部导航回到主页
+
+**设计风格**:
+- 干净的文档阅读体验
+- 清晰的标题层级
+- 与主页一致的配色和字体
+
+## 5. 素材来源
+
+| 素材 | 来源路径 | 目标路径 |
+|------|----------|----------|
+| 应用 Logo | `apps/assets/images/logo.png` | `web/assets/logo.png` |
+| App Store 图标 | `apps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png` | `web/assets/icon-1024.png` |
+| 隐私政策文本 (EN) | `apps/assets/legal/en/privacy_policy.md` | 转为 HTML 内容 |
+| 隐私政策文本 (ZH) | `apps/assets/legal/zh/privacy_policy.md` | 参考用 |
+| 服务条款 (EN) | `apps/assets/legal/en/terms_of_service.md` | 参考用 |
+| 关于我们 (EN) | `apps/assets/legal/en/about_us.md` | 参考用 |
+
+## 6. 品牌配色 (来自 visual_design_language.md)
+
+- Primary Purple: `#673AB7`
+- Accent Purple: `#9C27B0`
+- Light Purple Surface: `#F0E6FF`
+- Background Gray: `#F8F8F8`
+- Text Dark: `#333333`
+- Text Medium: `#666666`
+- Text Light: `#999999`
+- Tag Gold: bg `#FFF8E1`, text `#FFB300`
+
+## 7. 实现步骤
+
+### Phase 1: 项目初始化
+- [ ] 创建 `web/` 目录结构
+- [ ] 复制素材资源(logo、图标)
+- [ ] 准备隐私政策 HTML 内容
+
+### Phase 2: 设计与实现
+- [ ] 使用 UI skill 设计主页布局
+- [ ] 实现 index.html 产品主页
+- [ ] 实现 privacy.html 隐私政策页
+- [ ] 实现响应式适配
+
+### Phase 3: 验证
+- [ ] 浏览器测试页面渲染
+- [ ] 移动端响应式验证
+- [ ] 验证所有链接可点击
+- [ ] 确认隐私政策内容完整
+
+## 8. 验收标准
+
+1. 两个 HTML 文件均可直接在浏览器中打开,无构建依赖
+2. 产品主页包含:应用名称、Logo、功能描述、免责声明、联系方式
+3. 隐私政策页包含:完整的英文隐私政策文本、更新日期、联系方式
+4. 移动端和桌面端均可正常浏览
+5. 配色与 App 视觉语言一致
+6. 所有图片资源本地可用(无外部依赖)
+
+## 9. 不做的事
+
+- 不做多语言切换(英文为主,满足 App Store 全球审核)
+- 不做后端服务、表单提交
+- 不做 SEO 优化(仅满足 App Store 审核)
+- 不做域名配置/部署(仅产出静态文件)
+- 不做服务条款独立页面(在主页底部简要链接即可)
diff --git a/.trellis/tasks/04-30-product-website/task.json b/.trellis/tasks/04-30-product-website/task.json
new file mode 100644
index 0000000..77c230b
--- /dev/null
+++ b/.trellis/tasks/04-30-product-website/task.json
@@ -0,0 +1,44 @@
+{
+ "id": "04-30-product-website",
+ "name": "04-30-product-website",
+ "title": "Product Website & Privacy Policy for App Store",
+ "description": "",
+ "status": "planning",
+ "dev_type": null,
+ "scope": null,
+ "priority": "P2",
+ "creator": "zl-q",
+ "assignee": "zl-q",
+ "createdAt": "2026-04-30",
+ "completedAt": null,
+ "branch": null,
+ "base_branch": "dev",
+ "worktree_path": null,
+ "current_phase": 0,
+ "next_action": [
+ {
+ "phase": 1,
+ "action": "implement"
+ },
+ {
+ "phase": 2,
+ "action": "check"
+ },
+ {
+ "phase": 3,
+ "action": "finish"
+ },
+ {
+ "phase": 4,
+ "action": "create-pr"
+ }
+ ],
+ "commit": null,
+ "pr_url": null,
+ "subtasks": [],
+ "children": [],
+ "parent": null,
+ "relatedFiles": [],
+ "notes": "",
+ "meta": {}
+}
\ No newline at end of file
diff --git a/web/assets/icon-1024.png b/web/assets/icon-1024.png
new file mode 100644
index 0000000..004fe54
Binary files /dev/null and b/web/assets/icon-1024.png differ
diff --git a/web/assets/js/i18n.js b/web/assets/js/i18n.js
new file mode 100644
index 0000000..8584ebf
--- /dev/null
+++ b/web/assets/js/i18n.js
@@ -0,0 +1,335 @@
+(function () {
+ 'use strict';
+
+ var SUPPORTED = ['en', 'zh', 'zh_Hant'];
+ var STORAGE_KEY = 'meeyao_lang';
+ var DEFAULT_LANG = 'en';
+
+ var currentLang = resolveInitialLang();
+
+ function resolveInitialLang() {
+ var stored = localStorage.getItem(STORAGE_KEY);
+ if (stored && SUPPORTED.indexOf(stored) !== -1) return stored;
+ return DEFAULT_LANG;
+ }
+
+ function getLang() {
+ return currentLang;
+ }
+
+ function setLang(lang) {
+ if (SUPPORTED.indexOf(lang) === -1) return;
+ currentLang = lang;
+ localStorage.setItem(STORAGE_KEY, lang);
+ applyAll();
+ }
+
+ function applyAll() {
+ applyText();
+ applyHtml();
+ applyPlaceholder();
+ applyDocumentLang();
+ updateSwitcher();
+ applyPrivacyContent();
+ }
+
+ function applyText() {
+ var els = document.querySelectorAll('[data-i18n]');
+ for (var i = 0; i < els.length; i++) {
+ var key = els[i].getAttribute('data-i18n');
+ var val = t(key);
+ if (val) els[i].textContent = val;
+ }
+ }
+
+ function applyHtml() {
+ var els = document.querySelectorAll('[data-i18n-html]');
+ for (var i = 0; i < els.length; i++) {
+ var key = els[i].getAttribute('data-i18n-html');
+ var val = t(key);
+ if (val) els[i].innerHTML = val;
+ }
+ }
+
+ function applyPlaceholder() {
+ var els = document.querySelectorAll('[data-i18n-placeholder]');
+ for (var i = 0; i < els.length; i++) {
+ var key = els[i].getAttribute('data-i18n-placeholder');
+ var val = t(key);
+ if (val) els[i].setAttribute('placeholder', val);
+ }
+ }
+
+ function applyDocumentLang() {
+ var htmlLang = currentLang === 'zh_Hant' ? 'zh-Hant' : currentLang;
+ document.documentElement.lang = htmlLang;
+ }
+
+ function applyPrivacyContent() {
+ var privacyEl = document.getElementById('privacy-content');
+ if (privacyEl) {
+ privacyEl.innerHTML = getPrivacyContent(currentLang);
+ }
+ }
+
+ function updateSwitcher() {
+ var selects = document.querySelectorAll('#lang-select');
+ for (var i = 0; i < selects.length; i++) {
+ selects[i].value = currentLang;
+ }
+ }
+
+ function t(key) {
+ var keys = key.split('.');
+ var obj = translations[currentLang];
+ if (!obj) return key;
+ for (var i = 0; i < keys.length; i++) {
+ if (obj[keys[i]] === undefined) return key;
+ obj = obj[keys[i]];
+ }
+ return obj;
+ }
+
+ function initSwitchers() {
+ var selects = document.querySelectorAll('#lang-select');
+ for (var i = 0; i < selects.length; i++) {
+ selects[i].value = currentLang;
+ selects[i].addEventListener('change', function () {
+ setLang(this.value);
+ });
+ }
+ }
+
+ var translations = {
+ en: {
+ nav: {
+ features: 'Features',
+ about: 'About',
+ privacy: 'Privacy Policy',
+ contact: 'Contact',
+ home: 'Home',
+ support: 'Support',
+ lang_en: 'EN',
+ lang_zh: '简中',
+ lang_zh_hant: '繁中'
+ },
+ hero: {
+ badge: 'AI-Powered Cultural Wisdom',
+ title: 'Ancient I Ching Wisdom
Meets Modern AI',
+ subtitle: 'MeeYao Divination brings the profound tradition of Six-Line hexagram culture to your fingertips. Explore life\'s questions through the lens of ancient Eastern philosophy, enhanced by AI-powered interpretation.',
+ },
+ about: {
+ title: 'What is MeeYao Divination?',
+ p1: 'MeeYao Divination is an AI-assisted cultural reference app focused on traditional Six-Line culture and the timeless wisdom of the I Ching. Rooted in Eastern philosophical traditions, it helps users explore cultural connotations and gain diverse perspectives on everyday life.',
+ p2: 'By combining hexagram culture, traditional Five-Element theories, and GanZhi calendrical concepts, MeeYao offers a unique way to broaden your thinking and approach daily choices with clarity and a peaceful mindset.'
+ },
+ features: {
+ title: 'Core Features',
+ subtitle: 'Explore traditional divination culture with modern tools',
+ f1_title: 'Manual Coin Divination',
+ f1_desc: 'Perform traditional Six-Line hexagram casting with the classic coin method. Follow guided steps to build your hexagram authentically, preserving the ceremonial tradition.',
+ f2_title: 'Quick Auto Divination',
+ f2_desc: 'Generate a hexagram instantly when you need quick cultural reference. The app derives the hexagram based on traditional timing principles for a rapid interpretation.',
+ f3_title: 'AI-Powered Interpretation',
+ f3_desc: 'Receive thoughtful, structured analysis combining traditional Six-Line theory with AI-generated cultural insights. Each reading includes sign level, focus points, and practical advice.',
+ f4_title: 'Session History',
+ f4_desc: 'Review all your past divination sessions with complete hexagram details and AI interpretations. Follow up on previous readings for deeper exploration through conversational follow-up questions.'
+ },
+ culture: {
+ title: 'Rooted in Tradition',
+ desc: 'Six-Line culture originates from the I Ching, one of the oldest Chinese classics. It embodies the traditional understanding of the connection between personal thoughts, timing, and natural changes. Through Five-Element theory and GanZhi calendrical systems, users can explore Eastern cultural wisdom in a modern context.',
+ iching_title: 'I Ching',
+ iching_label: 'Classic Foundation',
+ elements_title: 'Elements',
+ elements_label: 'Wood Fire Earth Metal Water',
+ hexagrams_title: 'Hexagrams',
+ hexagrams_label: 'Symbolic Patterns'
+ },
+ disclaimer: {
+ title: 'Important Disclaimer',
+ text: 'All AI-generated content and cultural interpretation materials are for entertainment, cultural appreciation, and personal reference only. This app does not provide professional advice of any kind, including but not limited to business, finance, investment, medical, psychological, legal, career, or life decision-making guidance. All generated content shall not be regarded as factual basis or decision-making direction. Please approach traditional culture rationally.'
+ },
+ contact_section: {
+ title: 'Get in Touch',
+ desc: 'Have questions, feedback, or need support? We\'d love to hear from you.',
+ button: 'ann@xunmee.com'
+ },
+ footer: {
+ privacy: 'Privacy Policy',
+ support: 'Support',
+ developer: 'Developer: Ann Lee',
+ contact: 'Contact: ann@xunmee.com',
+ copyright: '\u00a9 2026 Ann Lee. All Rights Reserved.'
+ },
+ privacy: {
+ title: 'Privacy Policy',
+ updated: 'Last Updated: April 27, 2026',
+ effective: 'Effective Date: April 27, 2026'
+ }
+ },
+ zh: {
+ nav: {
+ features: '功能',
+ about: '关于',
+ privacy: '隐私政策',
+ contact: '联系我们',
+ home: '首页',
+ support: '支持',
+ lang_en: 'EN',
+ lang_zh: '简中',
+ lang_zh_hant: '繁中'
+ },
+ hero: {
+ badge: 'AI 驱动的文化智慧',
+ title: '古老易经智慧
遇见现代 AI',
+ subtitle: '觅爻签问将深厚的六爻卦象文化传统带到您指尖。通过古老的东方哲学视角,借助 AI 解读技术,探索生活中的各种问题。',
+ },
+ about: {
+ title: '觅爻签问是什么?',
+ p1: '觅爻签问是一款以 AI 技术、传统六爻文化与易经智慧为核心的传统文化参考工具。植根于东方哲学传统,帮助用户探索文化内涵,获得多元的生活参考视角。',
+ p2: '通过融合卦象文化、五行理论及干支传统人文理念,觅爻为您提供独特的思维方式拓展,以更开阔的视角和理性平和的心态看待日常抉择与生活状态。'
+ },
+ features: {
+ title: '核心功能',
+ subtitle: '以现代工具探索传统占卜文化',
+ f1_title: '手动起卦',
+ f1_desc: '使用经典铜钱法进行传统六爻起卦。按步骤引导,原汁原味地构建卦象,传承传统仪式。',
+ f2_title: '快速自动起卦',
+ f2_desc: '需要快速参考时,一键生成卦象。应用基于传统时间原理自动推演卦象,提供即时解读。',
+ f3_title: 'AI 智能解读',
+ f3_desc: '获得融合传统六爻理论与 AI 文化洞察的深度结构化分析。每次解读包含签级、关注要点和实用建议。',
+ f4_title: '会话历史',
+ f4_desc: '回顾所有历史占卦会话,包含完整卦象详情和 AI 解读。通过对后续问题的追问式对话,深入探索之前的占卦结果。'
+ },
+ culture: {
+ title: '根植传统',
+ desc: '六爻文化源自易经——中国最古老的经典之一。它承载着古人对心念、时序与天地变化相生相融的传统认知。通过五行理论和干支历法体系,在现代语境中探索东方文化智慧。',
+ iching_title: '易经',
+ iching_label: '经典根基',
+ elements_title: '五行',
+ elements_label: '木火土金水',
+ hexagrams_title: '卦象',
+ hexagrams_label: '象征体系'
+ },
+ disclaimer: {
+ title: '重要免责声明',
+ text: '本应用所有 AI 生成内容与文化解读资料,仅作娱乐、文化赏析与个人参考使用。本应用不提供任何专业指导建议,包括但不限于商业、金融、投资、医疗、心理、法律、职业及人生决策等领域。所有生成内容不得作为事实依据或行动决策的唯一标准。请理性看待传统文化,理性使用本应用。'
+ },
+ contact_section: {
+ title: '联系我们',
+ desc: '有任何问题、反馈或需要帮助?欢迎随时联系。',
+ button: 'ann@xunmee.com'
+ },
+ footer: {
+ privacy: '隐私政策',
+ support: '支持',
+ developer: '开发者:Ann Lee',
+ contact: '联系邮箱:ann@xunmee.com',
+ copyright: '\u00a9 2026 Ann Lee 保留所有权利'
+ },
+ privacy: {
+ title: '隐私政策',
+ updated: '最后更新日期:2026年4月27日',
+ effective: '生效日期:2026年4月27日'
+ }
+ },
+ zh_Hant: {
+ nav: {
+ features: '功能',
+ about: '關於',
+ privacy: '隱私政策',
+ contact: '聯繫我們',
+ home: '首頁',
+ support: '支持',
+ lang_en: 'EN',
+ lang_zh: '簡中',
+ lang_zh_hant: '繁中'
+ },
+ hero: {
+ badge: 'AI 驅動的文化智慧',
+ title: '古老易經智慧
遇見現代 AI',
+ subtitle: '覓爻簽問將深厚的六爻卦象文化傳統帶到您指尖。通過古老的東方哲學視角,借助 AI 解讀技術,探索生活中的各種問題。',
+ },
+ about: {
+ title: '覓爻簽問是什麼?',
+ p1: '覓爻簽問是一款以 AI 技術、傳統六爻文化與易經智慧為核心的傳統文化參考工具。植根於東方哲學傳統,幫助用戶探索文化內涵,獲得多元的生活參考視角。',
+ p2: '通過融合卦象文化、五行理論及干支傳統人文理念,覓爻為您提供獨特的思維方式拓展,以更開闊的視角和理性平和的心態看待日常抉擇與生活狀態。'
+ },
+ features: {
+ title: '核心功能',
+ subtitle: '以現代工具探索傳統占卜文化',
+ f1_title: '手動起卦',
+ f1_desc: '使用經典銅錢法進行傳統六爻起卦。按步驟引導,原汁原味地構建卦象,傳承傳統儀式。',
+ f2_title: '快速自動起卦',
+ f2_desc: '需要快速參考時,一鍵生成卦象。應用基於傳統時間原理自動推演卦象,提供即時解讀。',
+ f3_title: 'AI 智能解讀',
+ f3_desc: '獲得融合傳統六爻理論與 AI 文化洞察的深度結構化分析。每次解讀包含簽級、關注要點和實用建議。',
+ f4_title: '會話歷史',
+ f4_desc: '回顧所有歷史占卦會話,包含完整卦象詳情和 AI 解讀。通過對後續問題的追問式對話,深入探索之前的占卦結果。'
+ },
+ culture: {
+ title: '根植傳統',
+ desc: '六爻文化源自易經——中國最古老的經典之一。它承載著古人對心念、時序與天地變化相生相融的傳統認知。通過五行理論和干支曆法體系,在現代語境中探索東方文化智慧。',
+ iching_title: '易經',
+ iching_label: '經典根基',
+ elements_title: '五行',
+ elements_label: '木火土金水',
+ hexagrams_title: '卦象',
+ hexagrams_label: '象徵體系'
+ },
+ disclaimer: {
+ title: '重要免責聲明',
+ text: '本應用所有 AI 生成內容與文化解讀資料,僅作娛樂、文化賞析與個人參考使用。本應用不提供任何專業指導建議,包括但不限於商業、金融、投資、醫療、心理、法律、職業及人生決策等領域。所有生成內容不得作為事實依據或行動決策的唯一標準。請理性看待傳統文化,理性使用本應用。'
+ },
+ contact_section: {
+ title: '聯繫我們',
+ desc: '有任何問題、反饋或需要幫助?歡迎隨時聯繫。',
+ button: 'ann@xunmee.com'
+ },
+ footer: {
+ privacy: '隱私政策',
+ support: '支持',
+ developer: '開發者:Ann Lee',
+ contact: '聯繫郵箱:ann@xunmee.com',
+ copyright: '\u00a9 2026 Ann Lee 保留所有權利'
+ },
+ privacy: {
+ title: '隱私政策',
+ updated: '最後更新日期:2026年4月27日',
+ effective: '生效日期:2026年4月27日'
+ }
+ }
+ };
+
+ function getPrivacyContent(lang) {
+ return privacyTranslations[lang] || privacyTranslations['en'];
+ }
+
+ var privacyTranslations = {
+ en: '
Dear User, Welcome to MeeYao Divination (the "App"), independently developed and operated by an individual developer ("I", "me", "my"). I am committed to protecting your personal privacy and complying with applicable U.S. federal and state privacy laws, including the California Consumer Privacy Act (CCPA/CPRA), the Children\'s Online Privacy Protection Act (COPPA), CalOPPA, and other U.S. state privacy regulations.
This Privacy Policy clearly explains:
This policy applies to all users of this App. California residents are granted additional rights specified in Section 5.
I only collect necessary data to provide, maintain and optimize App cultural reference functions. All data is classified as Personal Information and Sensitive Personal Information (SPI) in accordance with CCPA/CPRA.
When you use the App, limited automatic data will be collected to ensure normal operation:
Your information will only be used for the following legitimate and limited purposes:
I will not use your personal sensitive content for commercial advertising or unauthorized marketing without your explicit consent.
User data collected through this App may be stored on secure third-party cloud servers located in the United States. All cross-border data transmission adopts encrypted transmission protocols to ensure data security.
Data will only be retained within the necessary time limit:
I do not sell, rent or trade your personal information in any form, and will never sell your data for commercial benefits.
I only share data with trusted third-party service providers necessary for App operation, and sign strict data protection restrictions:
All third parties are prohibited from using your data for independent commercial purposes.
Your data may be disclosed only in the following situations:
In accordance with CCPA/CPRA and U.S. local privacy laws, you enjoy the following rights:
You can submit data requests through the only dedicated contact method:
Contact Email: ann@xunmee.com
I will respond to your legitimate request within 45 days, and properly verify your identity to ensure data security before processing.
This App is not oriented to users under the age of 13. I do not intentionally collect any personal information of minors under 13 years old.
If you find that minor information has been improperly collected, please contact me via email in a timely manner, and I will completely delete the relevant data in accordance with COPPA regulations. Users aged 13–17 need to use this App under the supervision and consent of their guardians.
I adopt industry-standard technical protection measures to protect your data:
Please note that no network storage system can achieve absolute security, and I will always maintain the highest level of data protection measures.
This Privacy Policy may be updated irregularly to adapt to platform rules and legal adjustments. Important content changes will be notified through in-app prompts or email reminders in advance. Your continued use of the App after the update takes effect means that you agree to the revised policy.
If you have any questions, suggestions or privacy-related complaints about this Privacy Policy, please contact me:
Developer Email: ann@xunmee.com
If you are a California resident and dissatisfied with the processing result, you can consult the local privacy regulatory authority.
Independent Individual Developer
Last Updated: April 27, 2026
', + + zh: '尊敬的用户,欢迎使用 觅爻 MeeYao(以下简称"本应用"),本应用由个人开发者("我")独立开发和运营。我致力于保护您的个人隐私,并遵守适用的美国联邦和州隐私法律,包括《加州消费者隐私法》(CCPA/CPRA)、《儿童在线隐私保护法》(COPPA)、CalOPPA 以及其他美国州隐私法规。
本隐私政策清晰说明:
本政策适用于本应用的所有用户。加州居民享有第5节规定的额外权利。
我只收集为提供、维护和优化应用文化参考功能所需的数据。所有数据根据 CCPA/CPRA 分类为个人信息和敏感个人信息(SPI)。
当您使用本应用时,将收集有限的自动数据以确保正常运行:
您的信息仅用于以下合法且有限的目的:
未经您的明确同意,我不会将您的个人敏感内容用于商业广告或未经授权的营销。
通过本应用收集的用户数据可能存储于位于美国的第三方安全云服务器上。所有跨境数据传输均采用加密传输协议以确保数据安全。
数据仅在必要时限内保留:
我不以任何形式出售、出租或交易您的个人信息,绝不会为商业利益出售您的数据。
我只与应用运行所需的可信赖第三方服务提供商共享数据,并签署严格的数据保护限制:
所有第三方均被禁止将您的数据用于独立的商业目的。
仅在以下情况下您的数据可能被披露:
根据 CCPA/CPRA 和美国地方隐私法律,您享有以下权利:
您可以通过唯一指定联系方式提交数据请求:
联系邮箱:ann@xunmee.com
我将在 45 天内回复您的合法请求,并在处理前妥善验证您的身份以确保数据安全。
本应用不面向 13 岁以下用户。我不会故意收集 13 岁以下未成年人的任何个人信息。
如果您发现未成年人信息被不当收集,请及时通过邮箱联系我,我将按照 COPPA 法规完全删除相关数据。13-17 岁用户需在监护人监督和同意下使用本应用。
我采取行业标准的技术保护措施保护您的数据:
请注意,没有任何网络存储系统能实现绝对安全,我将始终保持最高级别的数据保护措施。
本隐私政策可能会不定期更新以适应平台规则和法律调整。重要内容变更将通过应用内提示或邮件提醒提前通知。更新生效后您继续使用本应用,即表示您同意修订后的政策。
如果您对本隐私政策有任何疑问、建议或隐私相关投诉,请联系我:
开发者邮箱:ann@xunmee.com
如果您是加州居民且对处理结果不满意,可咨询当地隐私监管机构。
独立个人开发者
最后更新日期:2026年4月27日
', + + zh_Hant: '尊敬的用戶,歡迎使用 覓爻 MeeYao(以下簡稱「本應用」),本應用由個人開發者(「我」)獨立開發和運營。我致力於保護您的個人隱私,並遵守適用的美國聯邦和州隱私法律,包括《加州消費者隱私法》(CCPA/CPRA)、《兒童在線隱私保護法》(COPPA)、CalOPPA 以及其他美國州隱私法規。
本隱私政策清晰說明:
本政策適用於本應用的所有用戶。加州居民享有第5節規定的額外權利。
我只收集為提供、維護和優化應用文化參考功能所需的數據。所有數據根據 CCPA/CPRA 分類為個人信息和敏感個人信息(SPI)。
當您使用本應用時,將收集有限的自動數據以確保正常運行:
您的信息僅用於以下合法且有限的目的:
未經您的明確同意,我不會將您的個人敏感內容用於商業廣告或未經授權的營銷。
通過本應用收集的用戶數據可能存儲於位於美國的第三方安全雲服務器上。所有跨境數據傳輸均採用加密傳輸協議以確保數據安全。
數據僅在必要時限內保留:
我不以任何形式出售、出租或交易您的個人信息,絕不會為商業利益出售您的數據。
我只與應用運行所需的可信賴第三方服務提供商共享數據,並簽署嚴格的數據保護限制:
所有第三方均被禁止將您的數據用於獨立的商業目的。
僅在以下情況下您的數據可能被披露:
根據 CCPA/CPRA 和美國地方隱私法律,您享有以下權利:
您可以通過唯一指定聯繫方式提交數據請求:
聯繫郵箱:ann@xunmee.com
我將在 45 天內回覆您的合法請求,並在處理前妥善驗證您的身份以確保數據安全。
本應用不面向 13 歲以下用戶。我不會故意收集 13 歲以下未成年人的任何個人信息。
如果您發現未成年人信息被不當收集,請及時通過郵箱聯繫我,我將按照 COPPA 法規完全刪除相關數據。13-17 歲用戶需在監護人監督和同意下使用本應用。
我採取行業標準的技術保護措施保護您的數據:
請注意,沒有任何網絡存儲系統能實現絕對安全,我將始終保持最高級別的數據保護措施。
本隱私政策可能會不定期更新以適應平台規則和法律調整。重要內容變更將通過應用內提示或郵件提醒提前通知。更新生效後您繼續使用本應用,即表示您同意修訂後的政策。
如果您對本隱私政策有任何疑問、建議或隱私相關投訴,請聯繫我:
開發者郵箱:ann@xunmee.com
如果您是加州居民且對處理結果不滿意,可諮詢當地隱私監管機構。
獨立個人開發者
最後更新日期:2026年4月27日
' + }; + + window.MeeYaoI18n = { + getLang: getLang, + setLang: setLang, + applyAll: applyAll, + initSwitchers: initSwitchers, + t: t, + getPrivacyContent: getPrivacyContent + }; + + if (document.readyState === 'loading') { + document.addEventListener('DOMContentLoaded', onReady); + } else { + onReady(); + } + + function onReady() { + applyAll(); + initSwitchers(); + } +})(); diff --git a/web/assets/logo.png b/web/assets/logo.png new file mode 100644 index 0000000..355b95d Binary files /dev/null and b/web/assets/logo.png differ diff --git a/web/index.html b/web/index.html new file mode 100644 index 0000000..61314bb --- /dev/null +++ b/web/index.html @@ -0,0 +1,296 @@ + + + + + ++ MeeYao Divination brings the profound tradition of Six-Line hexagram culture to your fingertips. Explore life's questions through the lens of ancient Eastern philosophy, enhanced by AI-powered interpretation. +
++ MeeYao Divination is an AI-assisted cultural reference app focused on traditional Six-Line culture and the timeless wisdom of the I Ching. Rooted in Eastern philosophical traditions, it helps users explore cultural connotations and gain diverse perspectives on everyday life. +
++ By combining hexagram culture, traditional Five-Element theories, and GanZhi calendrical concepts, MeeYao offers a unique way to broaden your thinking and approach daily choices with clarity and a peaceful mindset. +
+Explore traditional divination culture with modern tools
++ Perform traditional Six-Line hexagram casting with the classic coin method. Follow guided steps to build your hexagram authentically, preserving the ceremonial tradition. +
++ Generate a hexagram instantly when you need quick cultural reference. The app derives the hexagram based on traditional timing principles for a rapid interpretation. +
++ Receive thoughtful, structured analysis combining traditional Six-Line theory with AI-generated cultural insights. Each reading includes sign level, focus points, and practical advice. +
++ Review all your past divination sessions with complete hexagram details and AI interpretations. Follow up on previous readings for deeper exploration through conversational follow-up questions. +
++ Six-Line culture originates from the I Ching, one of the oldest Chinese classics. It embodies the traditional understanding of the connection between personal thoughts, timing, and natural changes. Through Five-Element theory and GanZhi calendrical systems, users can explore Eastern cultural wisdom in a modern context. +
++ Have questions, feedback, or need support? We'd love to hear from you. +
+ + + ann@xunmee.com + +Last Updated: April 27, 2026 | Effective Date: April 27, 2026
+