Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

footer social icons section fix #3

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions docs/Whitepaper2.0/competition.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ SeaScape | BSC, Moonbeam, Rinkeby testnet | Yes

Compared to all the bridging solutions described above, XP.NETWORK has a number of important advantages:

1) The first bridge designed exclusively for NFTs, tackling every aspect of asset transition and compatibility across multiple protocols<br/>
2) A much wider range of supported blockchains: any chain can be connected to the bridge<br/>
1) The first bridge designed exclusively for NFTs, tackling every aspect of asset transition and compatibility across multiple protocols.<br/>
2) A much wider range of supported blockchains: any chain can be connected to the bridge.<br/>
3) Linking EVM to a range of non-EVM chains with fundamentally different tech stacks, such as Elrond, Solana, Cardano, Algorand, etc.<br/>
4) A simple and seamless UI for minting, transfering, and exploring NFTs<br/>
5) Attractively low transaction fees, payable in the currency of the origin blockchain (ETH, BNB, SOL etc.) <br/>
6) Highly scalable: the capacity of the bridge is limited only by the TPS of the bridged chains <br/>
7) Possibility to mint NFTs on multiple chains from an easy-to-use UI <br/>
8) Superior security and reliability: a multilayer security system capable of preventing all common types of attacks, with no single points of failure<br/>
9) A more versatile technological stack, and provide the same level of security and reliability<br/>
4) A simple and seamless UI for minting, transfering, and exploring NFTs.<br/>
5) Attractively low transaction fees, payable in the currency of the origin blockchain (ETH, BNB, SOL etc). <br/>
6) Highly scalable: the capacity of the bridge is limited only by the TPS of the bridged chains. <br/>
7) Possibility to mint NFTs on multiple chains from an easy-to-use UI. <br/>
8) Superior security and reliability: a multilayer security system capable of preventing all common types of attacks, with no single points of failure.<br/>
9) A more versatile technological stack, and provide the same level of security and reliability.<br/>
10) Possibility to integrate the bridge with any NFT dApp, allowing users to trade and exchange NFTs the way they are used to, while the bridge operates behind the scenes.<br/>
2 changes: 1 addition & 1 deletion src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ export const Footer = () => {
href={link.href}
key={link.href}
target={link.target}
className="flex lg:flex-row text-sm items-center md:items-start md:flex-col text-gray-500 dark:text-gray-400 dark:hover:text-white hover:no-underline hover:text-black"
className={`flex lg:flex-row text-sm items-center md:items-start ${link.name == "GitHub" ? " md:flex-col " : " "} text-gray-500 dark:text-gray-400 dark:hover:text-white hover:no-underline hover:text-black`}
>
{link.icon ? (
<div className="w-5 mr-2 flex justify-center">
Expand Down