index.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. import Head from 'next/head'
  2. import Image from 'next/image'
  3. import styles from '../styles/Home.module.css'
  4. export default function Home() {
  5. return (
  6. <div className={styles.container}>
  7. <Head>
  8. <title>Create Next App</title>
  9. <meta name="description" content="Generated by create next app" />
  10. <link rel="icon" href="/favicon.ico" />
  11. </Head>
  12. <main className={styles.main}>
  13. <h1 className={styles.title}>
  14. Welcome to <a href="https://nextjs.org">Next.js!</a>
  15. </h1>
  16. <p className={styles.description}>
  17. Get started by editing{' '}
  18. <code className={styles.code}>pages/index.js</code>
  19. </p>
  20. </main>
  21. <footer className={styles.footer}>
  22. <a
  23. href="https://vercel.com?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
  24. target="_blank"
  25. rel="noopener noreferrer"
  26. >
  27. Powered by{' '}
  28. <span className={styles.logo}>
  29. <Image src="/vercel.svg" alt="Vercel Logo" width={72} height={16} />
  30. </span>
  31. </a>
  32. </footer>
  33. </div>
  34. )
  35. }