const Container = styled.div` display: flex; max-width: 1080px; margin: 0 auto; gap: var(--section-gap); flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: var(--section-gap) 24px; @media (max-width: 768px) { padding: var(--section-gap) 12px; } background-color: #b96868; `; const Header = styled.div` padding: 20px; `; const Name = styled.span` font-size: 90px; color: #89c70d; font-weight: bolder; font-family: 'Courier New', Courier, monospace; &:hover { color: #b3e253; } `; const Name3 = styled.a` font-size: 90px; color: #89c70d; font-weight: bolder; font-family: 'Courier New', Courier, monospace; &:hover { color: #b3e253; } `; const LogoWrapper = styled.div` padding: 2px; svg { fill: #89c70d; width: 500px; height: 500px; transition: rotate(1turn); &:hover { transform: rotate(0.5turn); fill: #b3e253; } } span { font-size: 25px; color: #89c70d; font-weight: bolder; font-family: 'Courier New', Courier, monospace; &:hover { color: #b3e253; } } `; const Detail = styled.div` font-size: 14px; color: #b3e253; font-weight: bolder; font-family: 'Courier New', Courier, monospace; `; return ( <Container> <Header> <Widget src={`mishih.near/widget/ReputeHeader`} /> <hr /> <Name>About Repute</Name> <Detail> Repute is a decentralized escrow service that simplifies the trading of difficult-to-transfer assets like bankruptcy claims and agreements. It eliminates the need for trust in a central authority by using a transparent blockchain platform. Repute holds funds from the buyer and collateral from the seller, ensuring both parties fulfill their obligations. It provides a secure and reliable solution for trading assets in special situations, such as bankruptcy claims, airdrop farming addresses, and agreements related to unvested tokens. </Detail> <Name>How it works</Name> <Detail> Alice owns a bankruptcy claim worth $1,000, and she wants to sell it to Bob for 10 cents on the dollar. Normally, transferring ownership of such claims is complicated due to various legal rules and the involvement of parties from different jurisdictions. To ensure a smooth transaction, Alice and Bob turn to Repute. They engage the escrow service, which operates on a decentralized blockchain platform. Repute holds the funds that Bob will pay and requires Alice to deposit collateral as assurance. Now, both Alice and Bob have a strong incentive to fulfill their obligations. If either party backs out of the deal, the other party will receive the deposited funds or collateral held by Repute. This arrangement builds trust and ensures that the transaction proceeds as agreed upon. With Repute's escrow service, the trade becomes secure and reliable. The use of blockchain technology guarantees transparency, as all transaction details are recorded immutably on the blockchain. This eliminates the need for reliance on a centralized authority, making the process more efficient and trustworthy. In this example, Repute simplifies the trading of a bankruptcy claim by providing a decentralized escrow service. It enables Alice and Bob to transact securely and confidently, overcoming the complexities associated with traditional methods of transferring such assets. </Detail> <Name3 href="/mishih.near/widget/ReputeOffers">Get Started!</Name3> </Header> </Container> );