asi-calculator/app/page.tsx

29 lines
664 B
TypeScript
Raw Normal View History

2024-03-29 15:06:40 +01:00
import styles from './page.module.css'
2024-03-30 19:11:24 +01:00
import { Swap, Buy } from '@/components/Strategies'
import { Content } from '@/components/Content'
2024-03-30 23:10:36 +01:00
import { CalculationBase } from '@/components/CalculationBaseOutput'
2024-03-31 06:01:26 +02:00
import { Header } from '@/components/Header'
import { Footer } from '@/components/Footer'
2024-03-29 12:36:05 +01:00
export default function Home() {
return (
2024-03-29 19:54:14 +01:00
<>
2024-03-31 06:01:26 +02:00
<Header />
2024-03-30 02:20:15 +01:00
<main className={styles.main}>
2024-03-30 19:27:18 +01:00
<section className={styles.breakout}>
<div className={styles.grid}>
<Swap />
<Buy />
</div>
<CalculationBase />
</section>
2024-03-30 19:11:24 +01:00
<Content />
2024-03-29 19:54:14 +01:00
</main>
2024-03-31 06:01:26 +02:00
<Footer />
2024-03-29 19:54:14 +01:00
</>
2024-03-29 15:06:40 +01:00
)
2024-03-29 12:36:05 +01:00
}