const text = ` ## **Quick Start** ### **π What is HamsterPocket?** HamsterPocket is your personal digital magic piggy bank. You place one type of digital coin inside, and over time, it transforms into another type of coin, all by itself. It's like having a robot assistant, working tirelessly, transparently, and securely for you.  ### **π‘ How Does it Work?** ##### **π Step 1: Setting Up Your HamsterPocket** Here you decide the rules for your HamsterPocket, including: - Source Token: The digital token you're starting with. - Target Token: The digital token you want to collect. - Frequency: How often the conversion should happen. - Price: The desired price for your target token. - Amount: The number of tokens to be converted at a time. - Stop-Loss: The safety net - if your potential loss reaches a specific limit, the pocket will stop or close. - Take Profit: The victory lap - if your potential profit hits a specific threshold, the pocket will stop or close. - Pocket Closure Conditions: Additional options for when the pocket should stop, such as reaching a certain time or accumulated token amount.  ##### **π Step 2: Activate Your HamsterPocket** Add your source tokens to your HamsterPocket. The magic begins as soon as the pocket has enough source tokens to perform a conversion.  ##### **π¬ Step 3: Monitor and Manage Your Pocket** The HamsterPocket keeps working until: - Your stop-loss or take-profit price is reached. - The end time or amount you set for closure is achieved. - You manually stop it.  Note: You also have the flexibility to pause your HamsterPocket and resume it whenever you want. When the job is done, you can open your HamsterPocket and collect your new tokens, along with any remaining source tokens. Remember: While HamsterPocket adds an element of fun to trading, it's a tool that deals with real value. So, make sure to carefully consider the rules you set for your HamsterPocket! Enjoy the magic of automated trading with HamsterPocket. `; const cssFont = fetch( "https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800" ).body; if (!state.theme) { State.update({ theme: styled.div` font-family: "Manrope", sans-serif; ${cssFont} ${css}`, }); } const Theme = state.theme; return ( <Theme> <div class="container pt-3 vw-80" style={{ display: "flex", justifyContent: "center" }} > <div style={{ width: "50vw" }}> <div style={{ marginBottom: 32 }}> {" "} π About Us: <a href="https://cavies.xyz" target="_blank" style={{ textDecoration: "underline" }} > Website </a> {" | "} <a href="https://twitter.com/CaviesLabs" target="_blank" style={{ textDecoration: "underline" }} > Twitter </a> {" | "} <a href="https://github.com/CaviesLabs" target="_blank" style={{ textDecoration: "underline" }} > Github </a> {" | "} <a href="mailto:hello@cavies.xyz" style={{ textDecoration: "underline" }} > Email </a> </div> <Markdown text={text} /> </div> </div> </Theme> );