asi-calculator/app/page.tsx
2024-03-29 18:54:14 +00:00

15 lines
369 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 { Prices } from '@/features/Prices'
import styles from './page.module.css'
export default function Home() {
return (
<>
<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>
</>
)
}