|
1 | 1 | import type { Metadata } from "next"; |
2 | 2 | import Image from "next/image"; |
| 3 | +import Script from "next/script"; |
3 | 4 | import { ArrowUpRight } from "lucide-react"; |
4 | 5 | import { Button } from "@/components/ui"; |
5 | 6 | import { CTASection } from "@/components/layouts"; |
6 | 7 | import { pageSeo } from "@/lib/page-seo"; |
| 8 | +import Tweet from "@/components/Tweet"; |
7 | 9 |
|
8 | 10 | export const metadata: Metadata = pageSeo.about; |
9 | 11 |
|
@@ -489,6 +491,69 @@ export default function AboutPage() { |
489 | 491 | </div> |
490 | 492 | </section> |
491 | 493 |
|
| 494 | + {/* ── TWEETS ───────────────────────────────────────────────────────── */} |
| 495 | + <section className="mx-auto w-full max-w-[1166px] px-4 py-16 sm:px-6 xl:px-0"> |
| 496 | + <div className="grid gap-x-6 gap-y-10 md:grid-cols-3"> |
| 497 | + <Tweet |
| 498 | + url="https://twitter.com/VitalikButerin/status/1539887980776751107?ref_src=twsrc%5Etfw" |
| 499 | + author="vitalik.eth (@VitalikButerin)" |
| 500 | + date="June 23, 2022" |
| 501 | + noConversation |
| 502 | + > |
| 503 | + IMO all donors to the gitcoin matching pool deserve to get big |
| 504 | + beautiful statues in the metaverse honoring their contributions. |
| 505 | + </Tweet> |
| 506 | + |
| 507 | + <Tweet |
| 508 | + url="https://twitter.com/LefterisJP/status/1538948370286489600?ref_src=twsrc%5Etfw" |
| 509 | + author="Lefteris Karapetsas | Hiring for @rotkiapp (@LefterisJP)" |
| 510 | + date="June 20, 2022" |
| 511 | + > |
| 512 | + Don't praise working for no money. This is not the spirit of{" "} |
| 513 | + <a href="https://twitter.com/hashtag/opensource?src=hash&ref_src=twsrc%5Etfw"> |
| 514 | + #opensource |
| 515 | + </a> |
| 516 | + .<br /> |
| 517 | + <br /> |
| 518 | + Work should be paid, and work made in the open should even be paid |
| 519 | + more. |
| 520 | + <br /> |
| 521 | + <br /> |
| 522 | + Instead of perpetuating the legend of the poor opensource maintainer |
| 523 | + let's find ways to sustainably fund{" "} |
| 524 | + <a href="https://twitter.com/hashtag/opensource?src=hash&ref_src=twsrc%5Etfw"> |
| 525 | + #opensource |
| 526 | + </a> |
| 527 | + .<br /> |
| 528 | + <br /> |
| 529 | + ❤️{" "} |
| 530 | + <a href="https://twitter.com/gitcoin?ref_src=twsrc%5Etfw"> |
| 531 | + @gitcoin |
| 532 | + </a> |
| 533 | + </Tweet> |
| 534 | + |
| 535 | + <Tweet |
| 536 | + url="https://twitter.com/sassal0x/status/1543809081630085121?ref_src=twsrc%5Etfw" |
| 537 | + author="sassal.eth 🦇🔊 (@sassal0x)" |
| 538 | + date="July 4, 2022" |
| 539 | + > |
| 540 | + I would love to see more non-speculative Ethereum apps take off |
| 541 | + during this bear market. |
| 542 | + <br /> |
| 543 | + <br /> |
| 544 | + So far the most popular ones I can think of (that have actual active |
| 545 | + users) are Gitcoin, POAP and ENS. |
| 546 | + <br /> |
| 547 | + <br /> |
| 548 | + What else is there? |
| 549 | + </Tweet> |
| 550 | + </div> |
| 551 | + </section> |
| 552 | + <Script |
| 553 | + src="https://platform.twitter.com/widgets.js" |
| 554 | + strategy="afterInteractive" |
| 555 | + /> |
| 556 | + |
492 | 557 | {/* ── CTA ──────────────────────────────────────────────────────────── */} |
493 | 558 | <CTASection |
494 | 559 | title="Ready to Contribute?" |
|
0 commit comments