react-icons/fi#FiBook JavaScript Examples

The following examples show how to use react-icons/fi#FiBook. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: index.js    From velocitypowered.com with MIT License 5 votes vote down vote up
export default function Home() {
  return (
    <>
      <Seo title="Welcome to Velocity" />
      <Jumbotron>
        <JumbotronLogo>
          <VelocityLogo />
          <div>
            <h1>Velocity</h1>
            <p>The modern, next-generation Minecraft server proxy.</p>
            <ButtonSection>
              <MainPageButton icon={<FiDownload size={"32px"}/>} title={"Download Now"} link={"/downloads"} />
              <MainPageButton icon={<FiBook size={"32px"}/>} title={"Learn More"} link={"/wiki"} />
            </ButtonSection>
          </div>
        </JumbotronLogo>
      </Jumbotron>
      <Explainer>
        <ExplainerSection>
          <ExplainerTidbit>
            <h2>Meet Velocity.</h2>
            <p>
              Velocity is a next-generation Minecraft proxy focused on scalability and flexibility. It allows server owners to link together multiple Minecraft servers so they may appear as one.
            </p>
          </ExplainerTidbit>

          <ExplainerTidbit>
            <h2>Blazing fast, extensible, and secure &mdash; choose three.</h2>
            <p>
              Velocity is blazing fast. Fast logins, fast server switches, optimizations to get the most from your server's hardware, and a focus on security means you can finally have plugins, a highly optimized proxy resilient to attacks, and protection against your backend servers being accessed by malicious users &mdash; no compromises required.
            </p>
          </ExplainerTidbit>

          <ExplainerTidbit>
            <h2>Always there for you.</h2>
            <p>
              Velocity powers some of the world's largest Minecraft networks along with numerous small networks. Velocity can scale to thousands of players per proxy instance. Best of all, it works with Paper, Sponge, Forge, Fabric, and all versions of Minecraft from 1.7.2 to 1.18.1.
            </p>
          </ExplainerTidbit>
        </ExplainerSection>
      </Explainer>
    </>
  )
}