feat: add user about page
This commit is contained in:
@@ -1,9 +0,0 @@
|
||||
<template>
|
||||
<main class="markdown-body px-4 text-left">
|
||||
<ContentDoc v-slot="{ doc }">
|
||||
<h1>{{ doc.title }}</h1>
|
||||
<ContentRenderer :value="doc" />
|
||||
</ContentDoc>
|
||||
</main>
|
||||
<BaseFooter />
|
||||
</template>
|
||||
@@ -1,8 +1,8 @@
|
||||
<template>
|
||||
<div class="w-full px-2 pt-8">
|
||||
<h1 text-2xl font="bold" my="4">
|
||||
<div class="w-full">
|
||||
<CommonHeader>
|
||||
帮助
|
||||
</h1>
|
||||
</CommonHeader>
|
||||
|
||||
<InstallPwa />
|
||||
|
||||
@@ -26,6 +26,9 @@
|
||||
<FAQItem title="是否有微信小程序?">
|
||||
因不可抗力(小程序因跳转 B 站视频而被判定为导流违规)下架。
|
||||
将不再提供小程序版本。
|
||||
<br>
|
||||
<br>
|
||||
搜索微信公众号<b>「云游君」</b>并发送<b>「做菜」</b>,也可以快速找到本网站。
|
||||
</FAQItem>
|
||||
|
||||
<FAQItem title="是否有 APP?">
|
||||
@@ -36,6 +39,21 @@
|
||||
你可以使用浏览器打开,点击上方的<b>「安装到桌面」</b>或在菜单中点击<b>「添加到主屏幕」</b>。
|
||||
</FAQItem>
|
||||
|
||||
<FAQItem title="未来是否会收费?">
|
||||
该项目将以免费开源的形式运营。
|
||||
<br>
|
||||
您可以考虑赞助本项目,以支持我们的开发。
|
||||
我会将其投入在周边的服务器、域名、CDN 等费用上。
|
||||
<ul mt-1>
|
||||
<li>
|
||||
<a href="https://afdian.net/a/yunyoujun" target="_blank">爱发电赞助</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://sponsors.yunyoujun.cn/" target="_blank">我要直接打钱!</a>
|
||||
</li>
|
||||
</ul>
|
||||
</FAQItem>
|
||||
|
||||
<FAQItem title="页面无法点击、资源加载失败?">
|
||||
<blockquote>
|
||||
试试「无痕模式」是否正常?
|
||||
@@ -62,35 +80,6 @@
|
||||
</li>
|
||||
</ol>
|
||||
</FAQItem>
|
||||
|
||||
<FAQItem title="其他相关链接">
|
||||
<ul>
|
||||
<li>
|
||||
相关链接
|
||||
<ul>
|
||||
<li>
|
||||
<a href="https://docs.qq.com/form/page/DWk9GWW9oTmlXZU9V" target="_blank">居家菜谱投稿</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://support.qq.com/products/507827" target="_blank">反馈建议分享(兔小巢)</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
网站相关
|
||||
<ul>
|
||||
<li>
|
||||
故障/新功能反馈:
|
||||
<a href="https://github.com/YunYouJun/cook/issues" target="_blank">Issues</a>
|
||||
</li>
|
||||
<li>
|
||||
交流/建议/分享:
|
||||
<a href="https://github.com/YunYouJun/cook/issues" target="_blank">Discussions</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</FAQItem>
|
||||
</div>
|
||||
</div>
|
||||
<BaseFooter mt-4 />
|
||||
|
||||
@@ -3,7 +3,7 @@ const rStore = useRecipeStore()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div pt-4 text-4xl>
|
||||
<div text-4xl>
|
||||
<button
|
||||
class="cursor-pointer transition active:text-green-800 hover:(text-green-600)"
|
||||
title="重置"
|
||||
@@ -16,5 +16,6 @@ const rStore = useRecipeStore()
|
||||
<p text="sm" m="b-4">
|
||||
好的,今天我们来做菜!
|
||||
</p>
|
||||
|
||||
<ChooseFood />
|
||||
</template>
|
||||
|
||||
10
pages/random.vue
Normal file
10
pages/random.vue
Normal file
@@ -0,0 +1,10 @@
|
||||
<template>
|
||||
<div flex flex-col>
|
||||
<CommonHeader>
|
||||
今天吃什么
|
||||
</CommonHeader>
|
||||
<div flex flex-grow flex-col items-center justify-center>
|
||||
<RandomRecipe mt-8 />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
@@ -1,7 +1,83 @@
|
||||
<template>
|
||||
<div>
|
||||
<button>
|
||||
<div i-ri-user-line />
|
||||
</button>
|
||||
<div px-2>
|
||||
<CommonHeader>
|
||||
我的
|
||||
</CommonHeader>
|
||||
|
||||
<FeedbackActions />
|
||||
|
||||
<p my-6 text-left text-base>
|
||||
很高兴能在这里与你相遇,也很希望这个网站可以真的帮助到你。
|
||||
</p>
|
||||
|
||||
<FAQItem title="关于">
|
||||
<div text-left>
|
||||
<ul>
|
||||
<li>
|
||||
<div class="inline-flex items-center justify-center">
|
||||
代码仓库:<a class="inline-flex items-center justify-center" href="https://github.com/YunYouJun/cook" target="_blank">
|
||||
<div m="r-1" i-ri-github-line inline-flex />YunYouJun/cook</a>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<div class="inline-flex items-center justify-center">
|
||||
菜谱视频来源:
|
||||
<a class="inline-flex items-center text-sm text-blue-600 dark:text-blue-400" href="https://docs.qq.com/sheet/DQk1vdkhFV0twQVNS" target="_blank">
|
||||
<div m="r-1" i-ri-bilibili-line inline-flex />
|
||||
<span class="inline-flex">隔离食用手册大全</span>
|
||||
</a>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</FAQItem>
|
||||
|
||||
<FAQItem title="关于我">
|
||||
<div text-left>
|
||||
我的个人微信公众号「云游君」,会分享一些生活和写的<a href="https://sponsors.yunyoujun.cn/projects" target="_blank">
|
||||
小玩具们
|
||||
</a>。
|
||||
|
||||
<a inline-flex py-4 href="https://cdn.yunyoujun.cn/img/about/white-qrcode-and-search.jpg" target="_blank">
|
||||
<img src="https://cdn.yunyoujun.cn/img/about/white-qrcode-and-search.jpg">
|
||||
</a>
|
||||
</div>
|
||||
<AboutMe />
|
||||
</FAQItem>
|
||||
|
||||
<FAQItem title="致谢">
|
||||
<p>
|
||||
感谢以下小伙伴为本项目提供的数据支持和 QA !
|
||||
</p>
|
||||
|
||||
<ul mt-2 text-left text-sm>
|
||||
<li>
|
||||
<a href="https://weibo.com/runny" target="_blank">Runny</a>
|
||||
</li>
|
||||
<li>
|
||||
山竹太凉
|
||||
</li>
|
||||
<li>
|
||||
leo
|
||||
</li>
|
||||
<li>
|
||||
麒麟
|
||||
</li>
|
||||
<li>
|
||||
晴方啾
|
||||
</li>
|
||||
<li>
|
||||
课代表阿伟
|
||||
</li>
|
||||
</ul>
|
||||
</FAQItem>
|
||||
|
||||
<FAQItem title="赞助者们">
|
||||
<a href="https://sponsors.yunyoujun.cn" target="_blank">
|
||||
<img src="https://sponsors.yunyoujun.cn/sponsors.svg">
|
||||
</a>
|
||||
</FAQItem>
|
||||
|
||||
<BaseFooter mt-4 />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user