Skip to content

Commit c207cd1

Browse files
Mobile Login Channel is close when user [sc-18453] (#401)
1 parent 9376851 commit c207cd1

36 files changed

+178
-211
lines changed

README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,15 +103,12 @@ and manage wallet switching.
103103

104104
IdentityKit comes with its own playground where you can try things out locally.
105105

106-
There are three applications included:
106+
There are two applications included:
107107

108-
1. `dApp` (react-dapp) - Built for signer developers, this app provides a web-based interface to
109-
visually explore the API documentation for IdentityKit standards. It runs on port 3001. Check it
110-
out at https://qzjsg-qiaaa-aaaam-acupa-cai.icp0.io/standards
111-
2. `Demo` (react-demo) - This app is for application developers. It's a simple frontend app with
108+
1. `Demo` (react-demo) - This app is for application developers. It's a simple frontend app with
112109
IdentityKit integrated. It runs on port 3002 and lets you sign in with IdentityKit and make
113110
canister calls. Check it out at https://qzjsg-qiaaa-aaaam-acupa-cai.icp0.io/demo
114-
3. `Signer` (react-signer) - This is a sample signer app that demonstrates the basics of signer
111+
2. `Signer` (react-signer) - This is a sample signer app that demonstrates the basics of signer
115112
functionality. It helps to understand what’s happening on the signer side. It runs on port 3003.
116113

117114
To get the playground up and running, use the following command:

docs/components/ThemedImage.tsx

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import Image from "next/image"
2+
import { useTheme } from "nextra-theme-docs"
3+
4+
interface Props {
5+
lightSrc: string
6+
darkSrc: string
7+
alt: string
8+
className?: string
9+
}
10+
11+
export default function ThemedImage({ lightSrc, darkSrc, alt, className }: Props) {
12+
const { resolvedTheme } = useTheme()
13+
14+
return (
15+
<div style={{ position: "relative", width: "100%", aspectRatio: "3/2" }} className={className}>
16+
<Image
17+
src={resolvedTheme === "dark" ? darkSrc : lightSrc}
18+
alt={alt}
19+
fill
20+
style={{ objectFit: "contain" }}
21+
/>
22+
</div>
23+
)
24+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

docs/pages/_meta.ts

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,4 @@ export default {
1414
miscellaneous: {
1515
title: "Miscellaneous",
1616
},
17-
blog: {
18-
title: "Blog",
19-
type: "page",
20-
},
21-
legal: {
22-
title: "Legal",
23-
type: "menu",
24-
items: {
25-
privacy: {
26-
title: "Privacy policy",
27-
href: "/legal/privacy",
28-
},
29-
terms: {
30-
title: "Terms of use",
31-
href: "/legal/terms",
32-
},
33-
},
34-
},
3517
}

docs/pages/blog.mdx

Lines changed: 0 additions & 10 deletions
This file was deleted.

docs/pages/getting-started/connect-wallet.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export const YourApp = () => {
4949
```
5050

5151
> Note: Make sure your app is wrapped in the necessary providers.
52-
> [Read more](installation#wrap-provider).
52+
> [Read more](/getting-started/installation#wrap-provider).
5353
5454
## Custom components
5555

0 commit comments

Comments
 (0)