Docs
Markdown

Markdown

Markdown h1

Markdown h2

Markdown h3

Markdown h4

Markdown h5
Markdown h6

The init command installs dependencies (framer-motion), adds the cn util, configures tailwind.config.js, and CSS variables for the project.

Terminal
What is your project named? my-app
Would you like to use TypeScript? No / Yes
Would you like to use ESLint? No / Yes
Would you like to use Tailwind CSS? No / Yes
Would you like to use `src/` directory? No / Yes
Would you like to use App Router? (recommended) No / Yes
Would you like to customize the default import alias (@/*)? No / Yes
What import alias would you like configured? @/*
IERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
 
interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount)
        external
        returns (bool);
    function allowance(address owner, address spender)
        external
        view
        returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount)
        external
        returns (bool);
}
Terminal
npx create-next-app@latest

Bold text

Italic text

Bold & Italic text

There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.

  1. First item
  2. Second item
  3. Third item
  4. Fourth item
  • First item

  • Second item

  • Third item

  • Fourth item

  • First item

  • Second item

  • Third item

    • Indented item
    • Indented item
  • Fourth item

const a = 1

Link to Google

Image

nameageheight
Tom30180
Alice20170
Tom30180
Alice20170
Alice20170
Copyright © 2024 heapup