next-learn
next-learn copied to clipboard
Learn Next.js Starter Code
The path to `app/dashboard/(overview)/page.tsx` is incorrectly shown as `app/dashboard/page.tsx` in the code section under [Grouping components](https://nextjs.org/learn/dashboard-app/streaming#grouping-components) in [Chapter 9 - Streaming](https://nextjs.org/learn/dashboard-app/streaming). 
Solved by replacing: ``` import { sql } from '@vercel/postgres'; . . . await sql< Revenue > ``` with ``` import { db } from '@vercel/postgres'; const client = await...
https://nextjs.org/learn/dashboard-app/adding-search-and-pagination  Need to highlight: ``` ``` instead of ``` ``` and here: 
im learning nextjs statter pack nextjs admin dashboard im using storage supabase when im accessing http://localhost:3000/seed the message is displaying { "message": "Uncomment this file and remove this line. You...
PS C:\Users\Adminisrator\Desktop\nextjs-dashboard> pnpm i @vercel/postgres WARN 6 deprecated subdependencies found: [email protected], [email protected], [email protected], [email protected], [email protected], [email protected] Already up to date Progress: resolved 250, reused 223, downloaded 0, added 0, done ...
Hi nextjs team, Im taking your first course using the official documentation but when I try to install the first example using "npx create-next-app@latest nextjs-dashboard --example "https://github.com/vercel/next-learn/tree/main/dashboard/starter-example" --use-pnpm" And then...
### What is the update you wish to see? Add the submit type to the signout button found in /ui/dashboard/sidenav.tsx ### Is there any context that might help us understand?...
### What is the update you wish to see? After complete the part of [Handling all errors with error.tsx](https://nextjs.org/learn/dashboard-app/error-handling#handling-all-errors-with-errortsx), if you follow the instructions of [Handling 404 errors with the...
- I think chapter 10 deserves additional instruction to update dependencies to the latest canary available from [nextjs](https://github.com/vercel/next.js). Because leaving it to as it is will produce error and will...