Skip to content

Commit

Permalink
re arrange
Browse files Browse the repository at this point in the history
  • Loading branch information
justinvforvendetta committed Jan 18, 2025
1 parent 4c1eb57 commit c3d0ece
Showing 1 changed file with 27 additions and 40 deletions.
67 changes: 27 additions & 40 deletions pages/get-verge.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,59 +13,46 @@ function GetVerge(props) {
<Head>
<title key="title">{t('common:meta.get-verge.title', { defaultValue: 'Get Verge - VergeCurrency.com' })}</title>
</Head>

<div className="get-verge pt-large pb" style={{
display: 'flex',
justifyContent: 'center',
alignItems: 'center', // Add this for vertical centering
marginBottom: '10px',
width: '100%',
height: '100%', // Optional: ensures the parent container scales properly
}}>
<div className="container">
<div className="row center-xs middle-xs pt pb" style={{
display: 'flex',
justifyContent: 'center',
alignItems: 'center', // Add this for vertical centering
marginBottom: '10px',
width: '100%',
height: '100%', // Optional: ensures the parent container scales properly
}}>
{/* Text added above the iframe */}
<h4 style={{ textAlign: 'center' }}>
Here you can buy XVG (or any cryptocurrency) with Paypal Coin (from the Paypal App), Bitcoin, or Ethereum!
or swap any crypto for a different crypto!
</h4>
<div className="iframe-container" style={{ display: 'flex', justifyContent: 'center', marginBottom: '10px' }}>
<iframe
src="https://swapspace.co/widget/e690ba97ac5620dc27d4101c"
frameBorder="0"
width="604px"
height="536px"
style={{
width: '604px',
height: '536px',
borderRadius: '20px',
maxWidth: '100%',
}}
/>
<div className="iframe-container" style={{ textAlign: 'center', marginBottom: '20px' }}>
<iframe
src="https://swapspace.co/widget/e690ba97ac5620dc27d4101c"
frameBorder="0"
width="404px"
height="536px"
style={{
width: '404px',
height: '536px',
borderRadius: '20px',
maxWidth: '100%',
}}
/>
</div>
<div className="col-xs-10">
<h2>{t('get-verge:body.intro', { defaultValue: 'Trade Verge on the most popular exchanges.' })}</h2>
<p className="mb">
<div className="get-verge pt-large pb">
<div className="container">
<div className="row center-xs middle-xs pt pb">
<p className="mb">
<a
href="https://coinmarketcap.com/currencies/verge/"
rel="noopener noreferrer"
>
{t('get-verge:body.intro3', { defaultValue: 'Visit Coinmarketcap for an additional list of market pairs.' })}
</a>
</p>

<div className="col-xs-10">

<h2>{t('get-verge:body.intro', { defaultValue: 'Trade Verge on the most popular exchanges.' })}</h2>
<h3>{t('get-verge:body.intro2', { defaultValue: 'We’re proud to be listed on:' })}</h3>

<Exchanges />

<span className="hidden-xs">
<br />
</span>

{/* Text added above the iframe */}
<h4 style={{ textAlign: 'center' }}>Here you can buy XVG (or any cryptocurrency) with Paypal Coin (from the Paypal App), Bitcoin, or Ethereum! or swap any crypto for a different crypto!</h4>

<h3>
{t('home:getverge.text6', {defaultValue: 'Exchange Disclaimer:'})}
{' '}
Expand Down Expand Up @@ -120,4 +107,4 @@ function GetVerge(props) {

const Extended = translate(['home', 'common', 'get-verge'], { i18n, wait: process.browser })(GetVerge);

export default Extended;
export default Extended;

0 comments on commit c3d0ece

Please sign in to comment.