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:
- Casper Wallet
- Ledger
- Metamask
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.
πͺοΈ 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
.
);
};