diff --git a/README.md b/README.md index dd93b34..6dd4388 100644 --- a/README.md +++ b/README.md @@ -21,10 +21,25 @@ To learn more about Next.js, take a look at the following resources: - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. -You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome! -## Deploy on Vercel +# Create new branch -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. - -Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details. +Created a new branch called "layouts": +``` +git checkout -b layouts +``` +Committed your layout toggle feature changes to this branch: +``` +git add . +``` +``` +git commit -m "Add layout toggle feature with horizontal and vertical layouts" +``` +Pushed the layouts branch to your remote repository: +``` +git push -u origin layouts +``` +Switched back to the main branch: +``` +git checkout main +```