{"id":28216910,"url":"https://github.com/kageryo/mywebsite","last_synced_at":"2025-10-28T21:15:49.444Z","repository":{"id":155185942,"uuid":"630942966","full_name":"KageRyo/MyWebsite","owner":"KageRyo","description":"我的個人網頁，在這裡探索更多新事物❤️","archived":false,"fork":false,"pushed_at":"2025-06-26T12:34:28.000Z","size":67703,"stargazers_count":7,"open_issues_count":5,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-26T13:32:45.518Z","etag":null,"topics":["my-website","self-website","website"],"latest_commit_sha":null,"homepage":"https://kageryo.coderyo.com","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/KageRyo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":"kageryo","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2023-04-21T14:17:20.000Z","updated_at":"2025-06-26T12:34:31.000Z","dependencies_parsed_at":"2024-03-26T11:28:33.205Z","dependency_job_id":"c75a4c94-9e1c-4fd4-acb9-73aef835cf67","html_url":"https://github.com/KageRyo/MyWebsite","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/KageRyo/MyWebsite","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KageRyo%2FMyWebsite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KageRyo%2FMyWebsite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KageRyo%2FMyWebsite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KageRyo%2FMyWebsite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KageRyo","download_url":"https://codeload.github.com/KageRyo/MyWebsite/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KageRyo%2FMyWebsite/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267108070,"owners_count":24037368,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-26T02:00:08.937Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["my-website","self-website","website"],"created_at":"2025-05-17T23:14:03.608Z","updated_at":"2025-10-28T21:15:49.434Z","avatar_url":"https://github.com/KageRyo.png","language":"HTML","funding_links":["https://ko-fi.com/kageryo"],"categories":[],"sub_categories":[],"readme":"# KageRyo Developer Website\n我的個人網頁，在這裡探索更多新事物❤️\n\n## 🌟 專案介紹\n這是 [KageRyo Developer](https://github.com/kageryo) 的個人網站，展示個人簡介、技能、作品集和聯絡資訊。\n\n## ⚡ 技術特色\n- **[TocasUI](https://github.com/teacat/tocas)** - 現代化 CSS 框架\n- **GitHub API** 整合 - 動態載入專案資訊\n- **響應式設計** - 支援桌面與行動裝置\n- **自動部署** - GitHub Pages\n\n## 🚀 快速開始\n\n### 前置要求\n- Node.js (建議版本 16+)\n- npm 或 yarn\n\n### 本地開發\n```bash\n# Clone 專案\ngit clone https://github.com/KageRyo/MyWebsite.git\ncd MyWebsite\n\n# 安裝依賴\nnpm install\n\n# 啟動開發伺服器\nnpm run dev\n```\n\n### 建置與部署\n```bash\n# 建構生產版本\nnpm run build\n\n# 預覽建構結果\nnpm run preview\n```\n\n自動部署已配置，推送到主分支即可更新網站。\n\n### 線上訪問\n🌐 **官網**：https://kageryo.github.io/MyWebsite/\n\n## 📂 專案結構\n```\n├── index.html              # 主入口檔案\n├── src/                    # 應用程式源碼\n│   ├── components/         # 組件模組\n│   │   ├── about/          # 關於頁面組件\n│   │   ├── contact/        # 聯絡頁面組件\n│   │   ├── home/           # 首頁組件\n│   │   ├── layout/         # 佈局組件\n│   │   └── projects/       # 專案頁面組件\n│   ├── stores/             # 狀態管理\n│   ├── router/             # 路由配置\n│   └── views/              # 頁面組件\n├── assets/                 # 靜態資源\n│   ├── css/                # 樣式文件\n│   └── img/                # 圖片資源\n└── .github/workflows/      # 自動部署配置\n```  \n\n## ✨ 主要功能\n- 🎨 **響應式設計** - 完美適配各種裝置\n- 🌙 **深色模式** - 支援明/暗主題切換\n- 📱 **行動裝置最佳化** - 手機端導航選單\n- 🔗 **GitHub API 整合** - 動態載入開源專案\n- 📧 **聯絡表單** - 直接發送郵件功能\n- 🚀 **快速載入** - 現代化單頁應用體驗\n\n## 如何貢獻\n我們歡迎任何形式的貢獻！如果您對此專案感興趣，請遵循以下步驟：\n\n1. Fork 此存儲庫\n2. 創建您的功能分支 (`git checkout -b feature/AmazingFeature`)\n3. 提交您的更改 (`git commit -m 'Add some AmazingFeature'`)\n4. 將您的更改推送到分支 (`git push origin feature/AmazingFeature`)\n5. 打開一個 Pull Request\n\n## 聯絡我們\n如果您有任何問題或建議，請隨時通過以下方式聯繫我們：\n\n- [提交 Issue](https://github.com/KageRyo/MyWebsite/issues)\n- 電子郵件: kageryo@coderyo.com\n\n## 📝 授權條款\n本專案頁面內容條款為 `CC-BY4`，可自由再製、轉發或使用，包含但不限於商業用途，唯須標明作者，而程式原始碼以 `MIT` 進行授權。\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkageryo%2Fmywebsite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkageryo%2Fmywebsite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkageryo%2Fmywebsite/lists"}