asi-calculator/app/page.tsx

17 lines
468 B
TypeScript
Raw Normal View History

2024-03-30 01:32:46 +01:00
import { Prices } from '@/components/Prices'
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-29 12:36:05 +01:00
export default function Home() {
return (
2024-03-29 19:54:14 +01:00
<>
<main className={styles.main}>
2024-03-29 22:54:07 +01:00
<h1 className={styles.title}>{`${metadata.title}`}</h1>
<p className={styles.description}>{`${metadata.description}`}</p>
2024-03-29 19:54:14 +01:00
<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
}