Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 594b078931 | |||
| f165921a07 |
31
README.md
31
README.md
@ -6,12 +6,6 @@ First, run the development server:
|
||||
|
||||
```bash
|
||||
npm run dev
|
||||
# or
|
||||
yarn dev
|
||||
# or
|
||||
pnpm dev
|
||||
# or
|
||||
bun dev
|
||||
```
|
||||
|
||||
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
|
||||
@ -27,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
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user