|
| 1 | +export default function HomePage() { |
| 2 | + return ( |
| 3 | + <div className="mx-auto w-full max-w-4xl p-6 space-y-8"> |
| 4 | + <div className="flex items-center justify-between"> |
| 5 | + <h1 className="text-3xl font-bold tracking-tight">The Guild Genesis</h1> |
| 6 | + <a |
| 7 | + href="https://discord.gg/pg4UgaTr" |
| 8 | + target="_blank" |
| 9 | + rel="noreferrer" |
| 10 | + 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" |
| 11 | + > |
| 12 | + Join our Discord |
| 13 | + </a> |
| 14 | + </div> |
| 15 | + |
| 16 | + <section className="space-y-4"> |
| 17 | + <h2 className="text-xl font-semibold">What is The Guild?</h2> |
| 18 | + <p className="text-muted-foreground"> |
| 19 | + The Guild is a peer‑run organization for software developers. We learn |
| 20 | + together, certify each other’s skills, and create opportunities |
| 21 | + through collaboration, attestations, and on‑chain credentials. |
| 22 | + </p> |
| 23 | + </section> |
| 24 | + |
| 25 | + <section className="space-y-4"> |
| 26 | + <h2 className="text-xl font-semibold">Why it matters</h2> |
| 27 | + <ul className="list-disc pl-6 space-y-2 text-muted-foreground"> |
| 28 | + <li> |
| 29 | + Community‑verified skills: members issue attestations that build |
| 30 | + portable, credible profiles. |
| 31 | + </li> |
| 32 | + <li> |
| 33 | + Learning by doing: contribute, earn badges, and grow through real |
| 34 | + projects. |
| 35 | + </li> |
| 36 | + <li> |
| 37 | + Open and merit‑based: progress is transparent and anchored on public |
| 38 | + infrastructure. |
| 39 | + </li> |
| 40 | + </ul> |
| 41 | + </section> |
| 42 | + |
| 43 | + <section className="space-y-4"> |
| 44 | + <h2 className="text-xl font-semibold">How it works</h2> |
| 45 | + <ol className="list-decimal pl-6 space-y-2 text-muted-foreground"> |
| 46 | + <li>Connect your wallet and create your developer profile.</li> |
| 47 | + <li> |
| 48 | + Contribute to initiatives and receive attestations from peers. |
| 49 | + </li> |
| 50 | + <li>Earn badges that reflect concrete skills and achievements.</li> |
| 51 | + <li> |
| 52 | + Use your on‑chain reputation across The Guild apps and beyond. |
| 53 | + </li> |
| 54 | + </ol> |
| 55 | + </section> |
| 56 | + |
| 57 | + <section className="space-y-4"> |
| 58 | + <h2 className="text-xl font-semibold">Get involved</h2> |
| 59 | + <p className="text-muted-foreground"> |
| 60 | + New here? Start by joining the Discord, introducing yourself, and |
| 61 | + picking a project that matches your interests. Your first contribution |
| 62 | + can earn your first attestation. |
| 63 | + </p> |
| 64 | + </section> |
| 65 | + </div> |
| 66 | + ); |
| 67 | +} |
0 commit comments