asi-calculator/app/page.tsx

26 lines
674 B
TypeScript
Raw Normal View History

2024-03-29 15:06:40 +01:00
import styles from './page.module.css'
2024-03-29 22:54:07 +01:00
import { metadata } from './layout'
2024-03-30 19:11:24 +01:00
import { Swap, Buy } from '@/components/Strategies'
import { Content } from '@/components/Content'
2024-03-29 12:36:05 +01:00
export default function Home() {
return (
2024-03-29 19:54:14 +01:00
<>
2024-03-30 02:20:15 +01:00
<header>
2024-03-29 22:54:07 +01:00
<h1 className={styles.title}>{`${metadata.title}`}</h1>
<p className={styles.description}>{`${metadata.description}`}</p>
2024-03-30 02:20:15 +01:00
</header>
<main className={styles.main}>
2024-03-30 19:11:24 +01:00
<div className={styles.grid}>
<Swap />
<Buy />
</div>
<Content />
2024-03-29 19:54:14 +01:00
</main>
2024-03-30 02:20:15 +01:00
<footer className={styles.footer}>
2024-03-30 16:49:14 +01:00
Send and memecoins to krema.eth
2024-03-30 02:20:15 +01: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
}