Compare commits

2 Commits

Author SHA1 Message Date
594b078931 README.md aktualisiert 2025-06-13 23:48:38 +02:00
f165921a07 README.md aktualisiert 2025-06-13 10:51:35 +02:00

View File

@ -6,12 +6,6 @@ First, run the development server:
```bash ```bash
npm run dev 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. 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. - [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. - [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. Created a new branch called "layouts":
```
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details. 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
```