2024-04-14 12:52:37 +02:00
|
|
|
import { Content, Footer, Header } from '@/components'
|
2024-04-01 14:42:08 +02:00
|
|
|
import { MarketData } from '@/features/prices'
|
2024-07-26 14:16:59 +02:00
|
|
|
import { Buy, Swap } from '@/features/strategies'
|
2024-04-14 12:52:37 +02:00
|
|
|
import styles from './page.module.css'
|
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>
|
2024-04-01 14:42:08 +02:00
|
|
|
<MarketData />
|
2024-03-30 19:27:18 +01:00
|
|
|
</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
|
|
|
}
|