···11+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
22+33+# dependencies
44+/node_modules
55+/.pnp
66+.pnp.js
77+88+# testing
99+/coverage
1010+1111+# next.js
1212+/.next/
1313+/out/
1414+1515+# production
1616+/build
1717+1818+# misc
1919+.DS_Store
2020+*.pem
2121+2222+# debug
2323+npm-debug.log*
2424+yarn-debug.log*
2525+yarn-error.log*
2626+.pnpm-debug.log*
2727+2828+# local env files
2929+.env*.local
3030+3131+# vercel
3232+.vercel
3333+3434+# typescript
3535+*.tsbuildinfo
3636+next-env.d.ts
+34
README.md
···11+This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
22+33+## Getting Started
44+55+First, run the development server:
66+77+```bash
88+npm run dev
99+# or
1010+yarn dev
1111+```
1212+1313+Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
1414+1515+You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file.
1616+1717+[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`.
1818+1919+The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
2020+2121+## Learn More
2222+2323+To learn more about Next.js, take a look at the following resources:
2424+2525+- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
2626+- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
2727+2828+You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
2929+3030+## Deploy on Vercel
3131+3232+The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
3333+3434+Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.