{`${metadata.title}`}
{`${metadata.description}`}
+diff --git a/app/page.module.css b/app/page.module.css
index 6734b36..eadfc05 100644
--- a/app/page.module.css
+++ b/app/page.module.css
@@ -14,12 +14,13 @@
}
.description {
- margin-bottom: 2rem;
font-size: clamp(1.1rem, 10vw, 1.75rem);
}
.footer {
- margin-top: 2rem;
flex-shrink: 0;
font-size: 0.8rem;
+ width: 100%;
+ max-width: calc(var(--max-width) * 1.5);
+ margin: 3rem auto 0 auto;
}
diff --git a/app/page.tsx b/app/page.tsx
index abbca06..11463b9 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -5,12 +5,16 @@ import { metadata } from './layout'
export default function Home() {
return (
<>
- {`${metadata.description}`}{`${metadata.title}`}
Buying with ${exampleBuyInUsd} right now gets you:
-
Swapping{' '}
@@ -131,6 +102,49 @@ export function Prices() {
}
/>
Buying with ${exampleBuyInUsd} right now gets you:
+
→{' '} - {formatNumber(amountAsi, 'ASI')}{' '} - = {formatNumber(amountFiat, 'USD')} + + {formatNumber(amountAsi || 0, 'ASI')} + {' '} + = {formatNumber(amountFiat || 0, 'USD')}
)