forked from 027xiguapi/code-box
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f0ab699
commit 48993c3
Showing
16 changed files
with
104 additions
and
20 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
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
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
File renamed without changes
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.
File renamed without changes
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>codexbox-支持</title> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
</head> | ||
<body></body> | ||
</html> |
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,17 @@ | ||
.feed { | ||
display: flex; | ||
flex-direction: column; | ||
padding: 16px; | ||
:global { | ||
.item { | ||
text-align: center; | ||
.item-img { | ||
width: 80%; | ||
} | ||
.desc { | ||
font-size: 16px; | ||
display: block; | ||
} | ||
} | ||
} | ||
} |
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,53 @@ | ||
import chromeUrl from "raw:~/public/webstore/1723513894421.jpg" | ||
import githubUrl from "raw:~/public/webstore/1724640034462.jpg" | ||
import edgeUrl from "raw:~/public/webstore/1724640161752.jpg" | ||
import firefoxUrl from "raw:~/public/webstore/img.png" | ||
import qrcodeUrl from "raw:~/public/wx/qrcode_wx.jpg" | ||
|
||
import styles from "./feed.module.scss" | ||
|
||
export default function FeedPage() { | ||
return ( | ||
<div className={styles.feed}> | ||
<div className="item"> | ||
<h1>微信公众号</h1> | ||
<img src={qrcodeUrl} alt="微信公众号" /> | ||
</div> | ||
<div className="item"> | ||
<h1>github</h1> | ||
<a | ||
className="desc" | ||
href="https://github.com/027xiguapi/code-box" | ||
target="_blank"> | ||
<div className="desc"> | ||
网站(https://github.com/027xiguapi/code-box) | ||
</div> | ||
<img src={githubUrl} alt="github" /> | ||
</a> | ||
</div> | ||
<div className="item"> | ||
<h1>应用商店</h1> | ||
<a | ||
href="https://chrome.google.com/webstore/detail/acnnhjllgegbndgknlliobjlekgilbdf" | ||
target="_blank"> | ||
<div className="desc">Chrome</div> | ||
<img className="item-img" src={chromeUrl} alt="Chrome" /> | ||
</a> | ||
<a | ||
className="desc" | ||
href="https://addons.mozilla.org/zh-CN/firefox/addon/code-box/" | ||
target="_blank"> | ||
<div className="desc">Firefox</div> | ||
<img className="item-img" src={firefoxUrl} alt="Firefox" /> | ||
</a> | ||
<a | ||
className="desc" | ||
href="https://microsoftedge.microsoft.com/addons/detail/code-box/cfpdbfmncaampihkmejogihjkenkonbn" | ||
target="_blank"> | ||
<div className="desc">Edge</div> | ||
<img className="item-img" src={edgeUrl} alt="Edge" /> | ||
</a> | ||
</div> | ||
</div> | ||
) | ||
} |
This file was deleted.
Oops, something went wrong.
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,14 @@ | ||
.history { | ||
display: flex; | ||
flex-direction: column; | ||
padding: 16px; | ||
:global { | ||
.content { | ||
width: 1000px; | ||
margin: 0 auto; | ||
.keyword-lighten { | ||
background-color: gold; | ||
} | ||
} | ||
} | ||
} |
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