├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── eslint.config.mjs ├── next-env.d.ts ├── next.config.ts ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public ├── BG.svg ├── fonts │ ├── ABCFavorit-Medium.woff2 │ └── InterVariable.ttf └── privy-logo.png ├── renovate.json ├── src ├── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── components │ ├── reusables │ │ └── section.tsx │ ├── sections │ │ ├── create-a-wallet.tsx │ │ ├── fund-wallet.tsx │ │ ├── link-accounts.tsx │ │ ├── mfa.tsx │ │ ├── session-signers.tsx │ │ ├── unlink-accounts.tsx │ │ ├── user-object.tsx │ │ ├── wallet-actions.tsx │ │ └── wallet-management.tsx │ └── ui │ │ ├── badge.tsx │ │ ├── custom-toast.tsx │ │ ├── fullscreen-loader.tsx │ │ ├── header.tsx │ │ └── privy-logo.tsx └── providers │ └── providers.tsx ├── tailwind.config.js └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/BG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/public/BG.svg -------------------------------------------------------------------------------- /public/fonts/ABCFavorit-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/public/fonts/ABCFavorit-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/InterVariable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/public/fonts/InterVariable.ttf -------------------------------------------------------------------------------- /public/privy-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/public/privy-logo.png -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/renovate.json -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/reusables/section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/src/components/reusables/section.tsx -------------------------------------------------------------------------------- /src/components/sections/create-a-wallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/src/components/sections/create-a-wallet.tsx -------------------------------------------------------------------------------- /src/components/sections/fund-wallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/src/components/sections/fund-wallet.tsx -------------------------------------------------------------------------------- /src/components/sections/link-accounts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/src/components/sections/link-accounts.tsx -------------------------------------------------------------------------------- /src/components/sections/mfa.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/src/components/sections/mfa.tsx -------------------------------------------------------------------------------- /src/components/sections/session-signers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/src/components/sections/session-signers.tsx -------------------------------------------------------------------------------- /src/components/sections/unlink-accounts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/src/components/sections/unlink-accounts.tsx -------------------------------------------------------------------------------- /src/components/sections/user-object.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/src/components/sections/user-object.tsx -------------------------------------------------------------------------------- /src/components/sections/wallet-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/src/components/sections/wallet-actions.tsx -------------------------------------------------------------------------------- /src/components/sections/wallet-management.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/src/components/sections/wallet-management.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/custom-toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/src/components/ui/custom-toast.tsx -------------------------------------------------------------------------------- /src/components/ui/fullscreen-loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/src/components/ui/fullscreen-loader.tsx -------------------------------------------------------------------------------- /src/components/ui/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/src/components/ui/header.tsx -------------------------------------------------------------------------------- /src/components/ui/privy-logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/src/components/ui/privy-logo.tsx -------------------------------------------------------------------------------- /src/providers/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/src/providers/providers.tsx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/privy-io/create-next-app/HEAD/tsconfig.json --------------------------------------------------------------------------------