Template for starting apps, powered by Next.js
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

63 lines
1.6 KiB

  1. import Head from 'next/head'
  2. export default function Home() {
  3. return (
  4. <div>
  5. <Head>
  6. <title>Create Next App</title>
  7. <link rel="icon" href="/favicon.ico" />
  8. </Head>
  9. <main>
  10. <h1>
  11. Welcome to <a href="https://nextjs.org">Next.js!</a>
  12. </h1>
  13. <p>
  14. Get started by editing{' '}
  15. <code>pages/index.js</code>
  16. </p>
  17. <div>
  18. <a href="https://nextjs.org/docs">
  19. <h3>Documentation &rarr;</h3>
  20. <p>Find in-depth information about Next.js features and API.</p>
  21. </a>
  22. <a href="https://nextjs.org/learn">
  23. <h3>Learn &rarr;</h3>
  24. <p>Learn about Next.js in an interactive course with quizzes!</p>
  25. </a>
  26. <a
  27. href="https://github.com/vercel/next.js/tree/master/examples"
  28. >
  29. <h3>Examples &rarr;</h3>
  30. <p>Discover and deploy boilerplate example Next.js projects.</p>
  31. </a>
  32. <a
  33. href="https://vercel.com/new?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
  34. >
  35. <h3>Deploy &rarr;</h3>
  36. <p>
  37. Instantly deploy your Next.js site to a public URL with Vercel.
  38. </p>
  39. </a>
  40. </div>
  41. </main>
  42. <footer>
  43. <a
  44. href="https://vercel.com?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
  45. target="_blank"
  46. rel="noopener noreferrer"
  47. >
  48. Powered by{' '}
  49. <img src="/vercel.svg" alt="Vercel Logo" />
  50. </a>
  51. </footer>
  52. </div>
  53. )
  54. }