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

Transiciones y fixes en data cuentas usa #97

Merged
merged 4 commits into from
Feb 29, 2024
Merged
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
48 changes: 24 additions & 24 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
import { ViewTransitions } from 'astro:transitions';
import NavBar from '../components/Menu/NavBar';
import Footer from '../components/Sections/Footer.astro';

Expand Down Expand Up @@ -58,6 +59,7 @@ const {
<meta name='twitter:title' content={title} />
<meta name='twitter:image' content={metaImage} />
<title>{title}</title>
<ViewTransitions />
<meta name='description' content={metaDescription} />
<meta name='keywords' content={metaKeywords} />
<link rel='icon' href='favicon.ico' type='image/x-icon' />
Expand All @@ -69,29 +71,27 @@ const {
{!hideNav && <NavBar pathname={Astro.url.pathname} client:load />}
<slot />
<Footer isFooterVisible={isFooterVisible} />
</body>
<!-- Google tag (gtag.js) -->
<script async src='https://www.googletagmanager.com/gtag/js?id=G-MVDC98G0E2'
></script>
<script>
// @ts-ignore
window.dataLayer = window.dataLayer || [];
function gtag() {
<script async src='https://www.googletagmanager.com/gtag/js?id=G-MVDC98G0E2'
></script>
<script>
// @ts-ignore
window.dataLayer = window.dataLayer || [];
function gtag() {
// @ts-ignore
dataLayer.push(arguments);
}
// @ts-ignore
dataLayer.push(arguments);
}
// @ts-ignore
gtag('js', new Date());
// @ts-ignore
gtag('config', 'G-MVDC98G0E2');
</script>
<script>
console.log('La Competencia nos eleva — Pierpaolo Barbieri');
console.log('Camine señora, camine — Lita de Lazzari');
</script>
gtag('js', new Date());
// @ts-ignore
gtag('config', 'G-MVDC98G0E2');
</script>
<script>
console.log('La Competencia nos eleva — Pierpaolo Barbieri');
console.log('Camine señora, camine — Lita de Lazzari');
</script>
<style is:global>
:root {
}
</style>
</body><!-- Google tag (gtag.js) -->
</html>

<style is:global>
:root {
}
</style>
10 changes: 5 additions & 5 deletions src/pages/cuentas-usa.astro
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ const accounts = [
logo: 'https://ik.imagekit.io/ferminrp/dolarapp.png?updatedAt=1709130134048',
url: 'https://www.dolarapp.com/referrals/ar_referral?referralCode=ferminrp_W8d',
attributes: {
'Comisión por recibir': 'U$S 3',
'Comisión por recibir': 'US$ 3',
'Comisión por extraer': '0%',
'Cuenta USA a tu nombre': true,
'Retiros en pesos': true,
'Tarjeta Virtual': false,
'Tarjeta Física': false,
'Tarjeta Virtual': true,
'Tarjeta Física': true,
'Retiros Crypto': false,
},
subscription: {
Costo: 'U$S 6,99',
Costo: 'US$ 6,99',
Rendimientos: '4,00%',
Cashback: '1,00%',
},
Expand Down Expand Up @@ -65,7 +65,7 @@ const accounts = [
'Retiros Crypto': false
},
subscription: {
Costo: 'U$S 4,99',
Costo: 'US$ 4,99',
Rendimientos: '4,50%'
}
}*/,
Expand Down
Loading