This repository was archived by the owner on May 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathApp.js
More file actions
94 lines (88 loc) · 2.67 KB
/
Copy pathApp.js
File metadata and controls
94 lines (88 loc) · 2.67 KB
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
import { ConnectWallet } from "@thirdweb-dev/react";
import "./styles/Home.css";
export default function Home() {
return (
<main className="main">
<div className="container">
<div className="header">
<h1 className="title">
Welcome to{" "}
<span className="gradient-text-0">
<a
href="https://thirdweb.com/"
target="_blank"
rel="noopener noreferrer"
>
thirdweb.
</a>
</span>
</h1>
<p className="description">
Get started by configuring your desired network in{" "}
<code className="code">src/index.js</code>, then modify the{" "}
<code className="code">src/App.js</code> file!
</p>
<div className="connect">
<ConnectWallet />
</div>
</div>
<div className="grid">
<a
href="https://portal.thirdweb.com/"
className="card"
target="_blank"
rel="noopener noreferrer"
>
<img
src="/images/portal-preview.png"
alt="Placeholder preview of starter"
/>
<div className="card-text">
<h2 className="gradient-text-1">Portal ➜</h2>
<p>
Guides, references, and resources that will help you build with
thirdweb.
</p>
</div>
</a>
<a
href="https://thirdweb.com/dashboard"
className="card"
target="_blank"
rel="noopener noreferrer"
>
<img
src="/images/dashboard-preview.png"
alt="Placeholder preview of starter"
/>
<div className="card-text">
<h2 className="gradient-text-2">Dashboard ➜</h2>
<p>
Deploy, configure, and manage your smart contracts from the
dashboard.
</p>
</div>
</a>
<a
href="https://thirdweb.com/templates"
className="card"
target="_blank"
rel="noopener noreferrer"
>
<img
src="/images/templates-preview.png"
alt="Placeholder preview of templates"
/>
<div className="card-text">
<h2 className="gradient-text-3">Templates ➜</h2>
<p>
Discover and clone template projects showcasing thirdweb
features.
</p>
</div>
</a>
</div>
</div>
</main>
);
}