asi-calculator/app/page.tsx

31 lines
847 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import styles from './page.module.css'
import { metadata } from './layout'
import { Swap, Buy } from '@/components/Strategies'
import { Content } from '@/components/Content'
import { CalculationBase } from '@/components/CalculationBaseOutput'
export default function Home() {
return (
<>
<header>
<h1 className={styles.title}>{`${metadata.title}`}</h1>
<p className={styles.description}>{`${metadata.description}`}</p>
</header>
<main className={styles.main}>
<section className={styles.breakout}>
<div className={styles.grid}>
<Swap />
<Buy />
</div>
<CalculationBase />
</section>
<Content />
</main>
<footer className={styles.footer}>
Send and memecoins to krema.eth
</footer>
</>
)
}