|
| 1 | +import { AppWrapper } from "@/components/AppWrapper"; |
| 2 | +import React from "react"; |
| 3 | + |
| 4 | +export default function GettingStartedPage() { |
| 5 | + return ( |
| 6 | + <section className="mx-auto max-w-4xl px-4 sm:px-6 lg:px-8 py-10 space-y-8"> |
| 7 | + <div className="flex items-center justify-between"> |
| 8 | + <h1 className="text-3xl font-bold tracking-tight">Getting Started</h1> |
| 9 | + <a |
| 10 | + href="https://discord.gg/pg4UgaTr" |
| 11 | + target="_blank" |
| 12 | + rel="noreferrer" |
| 13 | + className="inline-flex items-center rounded-md bg-indigo-600 px-4 py-2 text-sm font-medium text-white hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2" |
| 14 | + > |
| 15 | + Join our Discord |
| 16 | + </a> |
| 17 | + </div> |
| 18 | + |
| 19 | + <ol className="list-decimal pl-6 space-y-6 text-gray-700"> |
| 20 | + <li> |
| 21 | + <div className="space-y-2"> |
| 22 | + <h2 className="text-xl font-semibold"> |
| 23 | + Install and set up MetaMask |
| 24 | + </h2> |
| 25 | + <p> |
| 26 | + Install the MetaMask browser extension or mobile app and create a |
| 27 | + wallet. Then add the Polygon Amoy test network in MetaMask (Chain |
| 28 | + ID 80002). |
| 29 | + </p> |
| 30 | + <div className="space-x-3"> |
| 31 | + <a |
| 32 | + href="https://metamask.io/download/" |
| 33 | + target="_blank" |
| 34 | + rel="noreferrer" |
| 35 | + className="text-indigo-600 hover:underline" |
| 36 | + > |
| 37 | + Download MetaMask |
| 38 | + </a> |
| 39 | + <a |
| 40 | + href="https://chainlist.org/chain/80002" |
| 41 | + target="_blank" |
| 42 | + rel="noreferrer" |
| 43 | + className="text-indigo-600 hover:underline" |
| 44 | + > |
| 45 | + Add Polygon Amoy via Chainlist |
| 46 | + </a> |
| 47 | + </div> |
| 48 | + </div> |
| 49 | + </li> |
| 50 | + |
| 51 | + <li> |
| 52 | + <div className="space-y-2"> |
| 53 | + <h2 className="text-xl font-semibold"> |
| 54 | + Get Amoy testnet MATIC (gas) |
| 55 | + </h2> |
| 56 | + <p> |
| 57 | + You need a small amount of Amoy MATIC to make on‑chain actions. |
| 58 | + Ask in our Discord and a member will send you some testnet funds. |
| 59 | + </p> |
| 60 | + <a |
| 61 | + href="https://discord.gg/pg4UgaTr" |
| 62 | + target="_blank" |
| 63 | + rel="noreferrer" |
| 64 | + className="text-indigo-600 hover:underline" |
| 65 | + > |
| 66 | + Request Amoy gas on Discord |
| 67 | + </a> |
| 68 | + </div> |
| 69 | + </li> |
| 70 | + |
| 71 | + <li> |
| 72 | + <div className="space-y-2"> |
| 73 | + <h2 className="text-xl font-semibold">Create your Guild profile</h2> |
| 74 | + <p> |
| 75 | + Head to the Profiles page, connect your wallet, and create your |
| 76 | + profile to start building your on‑chain reputation. |
| 77 | + </p> |
| 78 | + <a href="/profiles" className="text-indigo-600 hover:underline"> |
| 79 | + Go to Profiles |
| 80 | + </a> |
| 81 | + </div> |
| 82 | + </li> |
| 83 | + |
| 84 | + <li> |
| 85 | + <div className="space-y-2"> |
| 86 | + <h2 className="text-xl font-semibold">Add a badge</h2> |
| 87 | + <p> |
| 88 | + Propose and create a new skill badge in the Badges page. Badges |
| 89 | + represent skills or contributions recognized by the community. |
| 90 | + </p> |
| 91 | + <a href="/badges" className="text-indigo-600 hover:underline"> |
| 92 | + Go to Badges |
| 93 | + </a> |
| 94 | + </div> |
| 95 | + </li> |
| 96 | + |
| 97 | + <li> |
| 98 | + <div className="space-y-2"> |
| 99 | + <h2 className="text-xl font-semibold">Give a badge to someone</h2> |
| 100 | + <p> |
| 101 | + After collaborating, issue a badge attestation to a peer to |
| 102 | + acknowledge their work. This helps build credible, portable |
| 103 | + developer profiles. |
| 104 | + </p> |
| 105 | + <a href="/profiles" className="text-indigo-600 hover:underline"> |
| 106 | + Find a profile to attest |
| 107 | + </a> |
| 108 | + </div> |
| 109 | + </li> |
| 110 | + </ol> |
| 111 | + </section> |
| 112 | + ); |
| 113 | +} |
0 commit comments