Skip to content

Commit

Permalink
[vercel-tutor] Upgrade Next.js and Tailwind (#1099)
Browse files Browse the repository at this point in the history
### Description

Upgrades Next.js to 15.2.0 and Tailwind to 4.0 on `vercel-tutor`.

### Demo URL

<!--
Provide a URL to a live deployment where we can test your PR. If a demo
isn't possible feel free to omit this section.
-->

### Type of Change

- [ ] New Example
- [ ] Example updates (Bug fixes, new features, etc.)
- [ ] Other (changes to the codebase, but not to examples)

### New Example Checklist

- [ ] 🛫 `npm run new-example` was used to create the example
- [ ] 📚 The template wasn't used but I carefuly read the [Adding a new
example](https://github.com/vercel/examples#adding-a-new-example) steps
and implemented them in the example
- [ ] 📱 Is it responsive? Are mobile and tablets considered?
  • Loading branch information
chibicode authored Feb 28, 2025
1 parent 0dd790c commit a9f05b7
Show file tree
Hide file tree
Showing 5 changed files with 1,131 additions and 1,245 deletions.
10 changes: 7 additions & 3 deletions vercel-tutor/app/globals.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@import "tailwindcss";

@theme {
--color-background: var(--background);
--color-foreground: var(--foreground);
--color-secondary: var(--secondary);
}

:root {
--background: #ffffff;
Expand Down
8 changes: 4 additions & 4 deletions vercel-tutor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"next": "15.1.3"
"next": "15.2.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.1.3",
"postcss": "^8",
"eslint-config-next": "15.2.0",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.1",
"tailwindcss": "^4",
"typescript": "^5"
}
}
Loading

0 comments on commit a9f05b7

Please sign in to comment.