create-near-app
Version:
Quickly scaffold your dApp on NEAR Blockchain
38 lines (34 loc) • 894 B
JavaScript
import Image from 'next/image';
import NearLogo from '/public/near.svg';
import NextLogo from '/public/next.svg';
import styles from './app.module.css';
import { Cards } from '@/components/cards';
export default function Home() {
return (
<main className={styles.main}>
<div className={styles.description}> </div>
<div className={styles.center}>
<Image
className={styles.logo}
src={NearLogo}
alt="NEAR Logo"
width={110 * 1.5}
height={28 * 1.5}
priority
/>
<h3 className="ms-2 me-3 text-dark"> + </h3>
<Image
className={styles.logo}
src={NextLogo}
alt="Next.js Logo"
width={300 * .58}
height={61 * .58}
priority
/>
</div>
<div className={styles.grid}>
<Cards />
</div>
</main>
);
}