-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/MetaBubble207/yonote
- Loading branch information
Showing
9 changed files
with
145 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Sync to Remote Repository | ||
|
||
on: | ||
push: | ||
branches: | ||
- main # 或者你的默认分支名称 | ||
|
||
jobs: | ||
sync: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout source repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Push to remote repository | ||
uses: ad-m/github-push-action@master # 把 `main` 改成 `master` 或具体的版本号 | ||
with: | ||
github_token: ${{ secrets.GIT_TOKEN }} | ||
github_url: ${{ secrets.GIT_REPO_URL}} | ||
repository: yonote # 你的远程仓库URL | ||
branch: main | ||
force: true # 使用 "true" 强制推送(当你想要你的变化覆盖远程仓库时) | ||
tags: true # 也推送tags |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
import Image from "next/image"; | ||
import React from "react"; | ||
|
||
function User() { | ||
return ( | ||
// 背景颜色 | ||
<div className="bg-gradient-to-rb from-custom-blue via-custom-teal to-custom-light-blue w-screen h-screen"> | ||
{/* 顶部 */} | ||
{/* 用户信息 */} | ||
<div className="pl-4 pt-9"> | ||
<div className="flex flex-row items-center"> | ||
{/* 用户头像 */} | ||
<Image src="/images/user/avatar.svg" alt="avatar" width={83} height={83} className="my-4 ml-4" /> | ||
<div className="ml-3 flex-1"> | ||
<div className="flex align-center"> | ||
<h1 className="w-10 text-[#252525] text-4.5 font-500 lh-6">芋圆</h1> | ||
|
||
{/* 图标 */} | ||
<Image src="/images/user/Group.png" alt="group" width={20} height={20} className="ml-2 w-5 h-5 items-center" /> | ||
</div> | ||
<div className="flex items-center"> | ||
{/* ID */} | ||
<div className="logo flex w-3.5 h-3.5 items-center"> | ||
<Image src="/images/user/I_logo.svg" alt="group" width={7.44} height={7.44} className="w-1.4775 h-1.86 shrink-0 fill-#666" /> | ||
<Image src="/images/user/D_logo.svg" alt="group" width={7.44} height={7.44} className="w-1.4775 h-1.86 shrink-0 fill-#666" /> | ||
</div> | ||
<span className="ml-1 w-18 text-[#999] font-Source Han Sans SC text-2.5 font-not-italic font-400 lh-6 items-center">1317wfa2</span> | ||
</div> | ||
|
||
</div> | ||
|
||
{/* 编辑资料 */} | ||
<div className="w-19.5 h-5 border-rd-4 bg-[#FFF] text-2.5 font-500 lh-6 rounded-xl flex bg-white pl-2.5 items-center mr-4"> | ||
<Image src="/images/user/icon_edit.png" alt="icon" width={14} height={14} className="w-4 h-4 mr-1" /> | ||
<a href="#" className="w-10 text-[#252525] text-2.5 font-500 lh-6">编辑资料</a> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
{/* 专栏、小课区域 */} | ||
<div className="w-85.75 h-63.75 border-rd-2.5 bg-#FFF ml-4 pl-4 pt-4 mt-6 "> | ||
{/* 导航区域 */} | ||
<div className="flex"> | ||
<a href="#" className="w-7 h-14 mr-8 text-[#B5B5B5] font-source-han-sans-sc text-sm font-normal leading-6">专栏</a> | ||
<a href="#" className="w-8 h-14 text-gray-900 font-source-han-sans-sc text-base font-medium leading-6 ">小课</a> | ||
</div> | ||
|
||
{/* 内容区域 */} | ||
<div className="flex w- h-14"> | ||
<Image src="/images/user/cover.svg" alt="icon" width={14} height={14} className="w-15.5 h-19" /> | ||
<div> | ||
<h2>「心智与阅读」</h2> | ||
<p>情绪价值波动,上上签,愤怒,变化,偏执,创造</p> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
</div> | ||
|
||
); | ||
} | ||
|
||
|
||
export default User; |