Skip to content

Commit

Permalink
Rename preview image and update transaction button style (#129)
Browse files Browse the repository at this point in the history
* Rename preview image and update transaction button style

* Fix typo in disclaimer

* Replace website with template

* Fix typo
  • Loading branch information
mgavrila authored Sep 29, 2023
1 parent 2585f08 commit a71c353
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
/>
<meta
name="twitter:image"
content="https://template-dapp.multiversx.com/social.jpg"
content="https://template-dapp.multiversx.com/preview.jpg"
/>

<!-- Other Cards -->
Expand All @@ -61,7 +61,7 @@
/>
<meta
property="og:image"
content="https://template-dapp.multiversx.com/social.jpg"
content="https://template-dapp.multiversx.com/preview.jpg"
/>

<title>Template dApp</title>
Expand Down
File renamed without changes
4 changes: 2 additions & 2 deletions src/pages/Disclaimer/Disclaimer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ export const Disclaimer = () => {
of merchantability or fitness for a particular purpose. No oral advice
or written or electronically delivered information given by MultiversX
or its affiliates, or any of its staff, providers, merchants, sponsors
or licensors, or the like, shall create any warranty. Use of this
or licensors, or the like, shall create any warranty. Use this
template is at your sole risk.
</p>
<p>
In no event shall MultiversX be liable for any injury, expenses, lost
profits, loss or damage, weather direct, indirect, incidental, or
consequential, or any other pecuniary loss or expense arising out of
your access, use or inability to use this website, even if e are
your access, use or inability to use this template, even if we are
expressly advised of the possibility of such damages.
</p>
</div>
Expand Down
5 changes: 1 addition & 4 deletions src/pages/Home/Transaction/Transaction.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { faPaperPlane } from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { TRANSACTIONS_ENDPOINT } from '@multiversx/sdk-dapp/apiCalls/endpoints';
import { Label } from 'components/Label';
import { ExplorerLink } from 'components/sdkDappComponents';
Expand All @@ -17,9 +15,8 @@ export const Transaction = () => {
<div className='flex flex-col gap-2 text-sm'>
<a
href={transactionUrl}
className='inline-block self-start rounded-lg px-3 py-2 text-center hover:no-underline my-0 text-gray-600 hover:bg-slate-100 mx-0'
className='self-start inline-block rounded-lg px-3 py-2 text-center hover:no-underline my-0 bg-transparent hover:bg-blue-600 text-blue-600 hover:text-white mr-0 border-solid border-blue-600 border-[1px]'
>
<FontAwesomeIcon icon={faPaperPlane} className='mr-1' />
Send transaction
</a>

Expand Down

0 comments on commit a71c353

Please sign in to comment.