asi-calculator/app/page.tsx

15 lines
369 B
TypeScript
Raw Normal View History

2024-03-29 15:06:40 +01:00
import { Prices } from '@/features/Prices'
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
<>
<main className={styles.main}>
<h1 className={styles.title}>Should I Buy OCEAN or AGIX or FET?</h1>
<Prices />
</main>
<footer className={styles.footer}>Send to krema.eth</footer>
</>
2024-03-29 15:06:40 +01:00
)
2024-03-29 12:36:05 +01:00
}