This repository was archived by the owner on Dec 12, 2024. It is now read-only.
generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathdocs-index.js
124 lines (114 loc) · 4.21 KB
/
docs-index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
import React from 'react';
import HeroCard from '@site/src/components/HeroCard';
import ExploreCard from '../../src/components/ExploreCard';
import Community from '../../src/components/Community';
import Head from '@docusaurus/Head';
function DocsIndex() {
return (
<div>
<Head title="Developer Docs | TBD">
<meta property="og:title" />
</Head>
<h1>
Give your customers control of their identity, data, and finances.
</h1>
<p className="mb-8">
Our toolkits bring decentralized identity, messaging, and data storage
to your applications. They let developers focus on creating delightful
user experiences, while returning ownership to individuals.
</p>
<div className="grid grid-cols-1 desktop:grid-cols-2 gap-4">
<HeroCard
heroText="Web5"
buttonUrl="/docs/web5/quickstart"
buttonText="Quickstart 🚀"
bodyText="An interactive guide to create an app with decentralized identity and storage"
imgSrc="/img/did-vc.svg"
imgClass="w-32 flip"
themeColor="purple"
/>
<HeroCard
heroText="tbDEX"
buttonUrl="/docs/tbdex/"
buttonText="Playbooks 📖"
bodyText="Guides on integrating your app with the tbDEX SDK to seek or provide liquidity"
imgSrc="/img/money-msg-blue-purple.svg"
imgClass="w-36 flip"
themeColor="cyan"
/>
</div>
<div className="padding-top--xl" />
<h2 className="mb-4">Learn More</h2>
<p className="mb-8">
Learn more about the components that enable decentralized applications.
</p>
<div className="grid grid-cols-1 desktop:grid-cols-2 gap-4">
<HeroCard
heroText="Decentralized Identifiers"
buttonUrl="/docs/web5/decentralized-identifiers/what-are-dids"
buttonText="Learn"
imgSrc="/img/id-blue-purple.svg"
imgClass="w-32 beat-fade"
bodyText="Learn how digital IDs work across the web"
themeColor="cyan"
/>
<HeroCard
heroText="Verifiable Credentials"
buttonUrl="/docs/web5/verifiable-credentials/what-are-vcs"
buttonText="Learn"
imgSrc="/img/credential-yellow.svg"
imgClass="w-32 beat-fade"
bodyText="Learn how digital credentials can be used to prove claims online"
themeColor="purple"
/>
<HeroCard
heroText="Wallet App Example"
buttonUrl="https://github.com/TBD54566975/tbd-examples/tree/main/swift/tbdex-example-ios"
buttonText="Learn"
imgSrc="/img/wallet-blue-yellow.svg"
imgClass="w-32 beat-fade"
bodyText="Explore an example iOS wallet app that uses tbDEX to find liquidity"
themeColor="purple"
/>
<HeroCard
heroText="Financial Institution Example"
buttonUrl="https://github.com/TBD54566975/tbdex-pfi-exemplar"
buttonText="Learn"
imgSrc="/img/bank-purple-yellow.svg"
imgClass="w-36 beat-fade"
bodyText="Explore an example liquidity provider that uses tbDEX to reach new markets"
themeColor="cyan"
/>
</div>
<div className="padding-top--xl" />
<h2 className="mb-4">Explore</h2>
<p className="mb-8">Dive into sample apps, videos, and more.</p>
<div className="grid grid-cols-1 tablet:grid-cols-2 desktop-lg:grid-cols-4 gap-4">
<ExploreCard
text="Sample Apps"
icon="/img/mobile-phone-yellow-blue.svg"
url="https://github.com/TBD54566975/tbd-examples"
/>
<ExploreCard
text="Videos"
icon="/img/tv-yellow-blue.svg"
url="https://www.youtube.com/@tbd.videos"
/>
<ExploreCard
text="Blog Posts"
icon="/img/blog-yellow-blue.svg"
imgClass="w-24"
url="/blog"
/>
<ExploreCard
text="Discussions"
icon="/img/microphone-yellow-blue.svg"
url="https://soundcloud.com/user-625850228/sets/the-blockchain-discussion"
/>
</div>
<div className="padding-top--xl" />
<Community />
</div>
);
}
export default DocsIndex;