MCPcopy Create free account
hub / github.com/027xiguapi/code-box / FeedPage

Function FeedPage

tabs/feed.tsx:9–53  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

7import styles from "./feed.module.scss"
8
9export default function FeedPage() {
10 return (
11 <div className={styles.feed}>
12 <div className="item">
13 <h1>微信公众号</h1>
14 <img src={qrcodeUrl} alt="微信公众号" />
15 </div>
16 <div className="item">
17 <h1>github</h1>
18 <a
19 className="desc"
20 href="https://github.com/027xiguapi/code-box"
21 target="_blank">
22 <div className="desc">
23 网站(https://github.com/027xiguapi/code-box)
24 </div>
25 <img src={githubUrl} alt="github" />
26 </a>
27 </div>
28 <div className="item">
29 <h1>应用商店</h1>
30 <a
31 href="https://chrome.google.com/webstore/detail/acnnhjllgegbndgknlliobjlekgilbdf"
32 target="_blank">
33 <div className="desc">Chrome</div>
34 <img className="item-img" src={chromeUrl} alt="Chrome" />
35 </a>
36 <a
37 className="desc"
38 href="https://addons.mozilla.org/zh-CN/firefox/addon/code-box/"
39 target="_blank">
40 <div className="desc">Firefox</div>
41 <img className="item-img" src={firefoxUrl} alt="Firefox" />
42 </a>
43 <a
44 className="desc"
45 href="https://microsoftedge.microsoft.com/addons/detail/code-box/cfpdbfmncaampihkmejogihjkenkonbn"
46 target="_blank">
47 <div className="desc">Edge</div>
48 <img className="item-img" src={edgeUrl} alt="Edge" />
49 </a>
50 </div>
51 </div>
52 )
53}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected