import React from 'react'; import { Account, BuyMeACoffee, CustomMenuItems, Section, UseClickRefHook } from './components'; import Container from '../container'; import {useClickRef} from "@make-software/csprclick-ui"; export const LandingBrief = () => { const clickRef = useClickRef(); return (

✨ Multiple wallets integration

This project template comes with full support for multiple wallets: Your app can interact with any of them using the same API. CSPR.click takes care of everything wallet related. If needed, you can{' '} modify the list of enabled wallets .

βš™οΈ Uniform UI/UX

CSPR.click UI components provide a common UX across different Casper apps for an easy management of accounts, settings, and future ecosystem-wide functionality. Customize the elements in the top bar {' '} according to your application requirements. Add and remove settings selectors.

πŸ” Sign in

Now, go back to the top of the page and sign in with your favorite wallet. Or, click here: { event.preventDefault(); clickRef?.signIn(); }} > {' '} Connect .
); }; export const SignedInBrief = () => { return (

πŸŽ‰ Awesome! You have successfully signed in! What's next?

Be sure that on this page you'll find all information you need for future integration. Before you'll jump into development process, please scroll down and get familiar with each section. Below you'll find some useful code snipped with explanation and easy integration examples about most important features in the SDK which you'll use frequently.
  1. useClickRef hook
  2. Get your userΒ΄s account and update your app
  3. Customize the account menu
  4. Buy Alice a coffee on testnet

πŸͺοΈ useClickRef hook

πŸ†” Get access to your user account

πŸ”§ Customize the account menu

β˜• Buy Alice a coffee on testnet

πŸ”₯ Happy hacking!

Finally! Time to focus on your new project! And, remember, you may find guides and examples in{' '} our documentation . Or you can reach to us on{' '} telegram .
); };