-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpage.tsx
More file actions
37 lines (36 loc) · 944 Bytes
/
page.tsx
File metadata and controls
37 lines (36 loc) · 944 Bytes
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
'use client';
import { Button, Heading } from '@biom3/react';
import NextLink from 'next/link';
export default function Home() {
return (<>
<Heading
size="medium"
className="mb-1">
Passport Connect Examples
</Heading>
<Button
className="mb-1"
size="medium"
rc={<NextLink href="/connect-with-eip1193" />}>
Connect with EIP-1193
</Button>
<Button
className="mb-1"
size="medium"
rc={<NextLink href="/connect-with-etherjs" />}>
Connect with EtherJS
</Button>
<Button
className="mb-1"
size="medium"
rc={<NextLink href="/connect-with-wagmi" />}>
Connect with Wagmi
</Button>
<Button
className="mb-1"
size="medium"
rc={<NextLink href="/connect-with-auth-next" />}>
🆕 Connect with Auth-Next (Default Auth)
</Button>
</>);
}