@@ -20,6 +20,7 @@ import MainArticle from "@/components/MainArticle"
20
20
import { ContentContainer } from "@/components/MdComponents"
21
21
import PageMetadata from "@/components/PageMetadata"
22
22
import { Center , Flex , Stack } from "@/components/ui/flex"
23
+ import { ListItem , UnorderedList } from "@/components/ui/list"
23
24
24
25
import { existsNamespace } from "@/lib/utils/existsNamespace"
25
26
import { getLastDeployDate } from "@/lib/utils/getLastDeployDate"
@@ -345,16 +346,16 @@ const LearnPage = () => {
345
346
< Flex className = "my-12 flex-col overflow-hidden rounded-[10px] bg-main-gradient lg:flex-row" >
346
347
< Stack className = "gap-8 p-12" >
347
348
< H3 > { t ( "things-to-consider-banner-title" ) } </ H3 >
348
- < ul className = "mb-0" >
349
- < li > { t ( "things-to-consider-banner-1" ) } </ li >
350
- < li >
349
+ < UnorderedList className = "mb-0" >
350
+ < ListItem > { t ( "things-to-consider-banner-1" ) } </ ListItem >
351
+ < ListItem >
351
352
{ t ( "things-to-consider-banner-2" ) } { " " }
352
353
< InlineLink href = "/layer-2/" >
353
354
{ t ( "things-to-consider-banner-layer-2" ) }
354
355
</ InlineLink >
355
356
.
356
- </ li >
357
- </ ul >
357
+ </ ListItem >
358
+ </ UnorderedList >
358
359
</ Stack >
359
360
< div className = "self-end" >
360
361
< Image src = { newRings } alt = "" maxW = { 265 } />
@@ -458,38 +459,38 @@ const LearnPage = () => {
458
459
description = { t ( "emerging-use-cases-description" ) }
459
460
>
460
461
< Stack asChild className = "flex-1 justify-center gap-0" >
461
- < ul className = "mb-0" >
462
- < li >
462
+ < UnorderedList className = "mb-0" >
463
+ < ListItem >
463
464
< InlineLink href = "/decentralized-identity/" >
464
465
{ t ( "common:decentralized-identity" ) }
465
466
</ InlineLink >
466
- </ li >
467
- < li >
467
+ </ ListItem >
468
+ < ListItem >
468
469
< InlineLink href = "/social-networks/" >
469
470
{ t ( "common:decentralized-social-networks" ) }
470
471
</ InlineLink >
471
- </ li >
472
- < li >
472
+ </ ListItem >
473
+ < ListItem >
473
474
< InlineLink href = "/desci/" >
474
475
{ t ( "common:decentralized-science" ) }
475
476
</ InlineLink >
476
- </ li >
477
- < li >
477
+ </ ListItem >
478
+ < ListItem >
478
479
< InlineLink href = "https://decrypt.co/resources/what-are-play-to-earn-games-how-players-are-making-a-living-with-nfts" >
479
480
{ t ( "play-to-earn" ) }
480
481
</ InlineLink >
481
- </ li >
482
- < li >
482
+ </ ListItem >
483
+ < ListItem >
483
484
< InlineLink href = "https://woodstockfund.medium.com/quadratic-funding-better-way-to-fund-public-goods-76f1679b2ba2" >
484
485
{ t ( "fundraising-through-quadratic-funding" ) }
485
486
</ InlineLink >
486
- </ li >
487
+ </ ListItem >
487
488
< li >
488
489
< InlineLink href = "https://hbr.org/2022/01/how-walmart-canada-uses-blockchain-to-solve-supply-chain-challenges" >
489
490
{ t ( "supply-chain-management" ) }
490
491
</ InlineLink >
491
492
</ li >
492
- </ ul >
493
+ </ UnorderedList >
493
494
</ Stack >
494
495
</ Card >
495
496
</ CardGrid >
@@ -660,71 +661,71 @@ const LearnPage = () => {
660
661
>
661
662
< Stack className = "gap-8" >
662
663
< H3 > { t ( "books-about-ethereum" ) } </ H3 >
663
- < ul >
664
- < li >
664
+ < UnorderedList >
665
+ < ListItem >
665
666
< InlineLink href = "https://www.goodreads.com/book/show/57356067-the-cryptopians" >
666
667
{ t ( "cryptopians-title" ) }
667
668
</ InlineLink > { " " }
668
669
< i > { t ( "cryptopians-description" ) } </ i >
669
- </ li >
670
- < li >
670
+ </ ListItem >
671
+ < ListItem >
671
672
< InlineLink href = "https://www.goodreads.com/book/show/55360267-out-of-the-ether" >
672
673
{ t ( "out-of-the-ether-title" ) }
673
674
</ InlineLink > { " " }
674
675
< i > { t ( "out-of-the-ether-description" ) } </ i >
675
- </ li >
676
- < li >
676
+ </ ListItem >
677
+ < ListItem >
677
678
< InlineLink href = "https://www.goodreads.com/en/book/show/50175330-the-infinite-machine" >
678
679
{ t ( "the-infinite-machine-title" ) }
679
680
</ InlineLink > { " " }
680
681
< i > { t ( "the-infinite-machine-description" ) } </ i >
681
- </ li >
682
- < li >
682
+ </ ListItem >
683
+ < ListItem >
683
684
< InlineLink href = "https://github.com/ethereumbook/ethereumbook" >
684
685
{ t ( "mastering-ethereum-title" ) }
685
686
</ InlineLink > { " " }
686
687
< i > { t ( "mastering-ethereum-description" ) } </ i >
687
- </ li >
688
- < li >
688
+ </ ListItem >
689
+ < ListItem >
689
690
< InlineLink href = "https://www.goodreads.com/en/book/show/59892281-proof-of-stake" >
690
691
{ t ( "proof-of-stake-title" ) }
691
692
</ InlineLink > { " " }
692
693
< i > { t ( "proof-of-stake-description" ) } </ i >
693
- </ li >
694
- </ ul >
694
+ </ ListItem >
695
+ </ UnorderedList >
695
696
< H3 > { t ( "podcasts-about-ethereum" ) } </ H3 >
696
- < ul >
697
- < li >
697
+ < UnorderedList >
698
+ < ListItem >
698
699
< InlineLink href = "https://www.youtube.com/@Green_Pill_Podcast" >
699
700
{ t ( "green-pill-title" ) }
700
701
</ InlineLink > { " " }
701
702
< i > { t ( "green-pill-description" ) } </ i >
702
- </ li >
703
- < li >
703
+ </ ListItem >
704
+ < ListItem >
704
705
< InlineLink href = "https://www.zeroknowledge.fm/" >
705
706
{ t ( "zeroknowledge-title" ) }
706
707
</ InlineLink > { " " }
707
708
< i > { t ( "zeroknowledge-description" ) } </ i >
708
- </ li >
709
- < li >
709
+ </ ListItem >
710
+ < ListItem >
710
711
< InlineLink href = "https://unchainedpodcast.com/" >
711
712
{ t ( "unchained-title" ) }
712
713
</ InlineLink > { " " }
713
714
< i > { t ( "unchained-description" ) } </ i >
714
- </ li >
715
- < li >
715
+ </ ListItem >
716
+ < ListItem >
716
717
< InlineLink href = "https://www.youtube.com/@TheDailyGwei/" >
717
718
{ t ( "the-daily-gwei-title" ) }
718
719
</ InlineLink > { " " }
719
720
< i > { t ( "the-daily-gwei-description" ) } </ i >
720
- </ li >
721
- < li >
721
+ </ ListItem >
722
+ < ListItem >
722
723
< InlineLink href = "http://podcast.banklesshq.com/" >
723
724
{ t ( "bankless-title" ) }
724
725
</ InlineLink > { " " }
725
726
< i > { t ( "bankless-description" ) } </ i >
726
- </ li >
727
- </ ul >
727
+ </ ListItem >
728
+ </ UnorderedList >
728
729
</ Stack >
729
730
</ Section >
730
731
0 commit comments