Monorepo containing core modules of Zeichen.
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.

66 lines
2.0 KiB

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