next-learn icon indicating copy to clipboard operation
next-learn copied to clipboard

Learn Next.js Starter Code

Results 275 next-learn issues
Sort by recently updated
recently updated
newest added

hello. when im using searchParams as props like below: const Page = ({ searchParams, }: { searchParams?: { page?:string, order?:string } }) => { .... and then use Suspense on...

Hi. In the nextjs learn Chapter 15 "Adding Authentication" [Adding the sign in functionality](https://nextjs.org/learn/dashboard-app/adding-authentication#adding-the-sign-in-functionality) part, the order and the emphasis of code block is bit confusing. The second code block...

In chapter12 `/app/dashboard/invoices/[id]/edit/page.tsx ` I have ``` ``` but in `/app/ui/invoices/edit-form.tsx` says ``` export default function EditInvoiceForm ``` so I think `` is correct. It's a small detail, but I...

https://nextjs.org/learn/dashboard-app/fetching-data#fetching-data-for-revenuechart > Then, uncomment the component, navigate to the component file (/app/ui/dashboard/revenue-chart.tsx) and uncomment the code inside it. Check your localhost, you should be able to see a chart that...

hi Team, thank you for the wonderful guide, but I notice this inconsistency which may need your help. At 11.4 Updating the table([4. Updating the table](https://nextjs.org/learn/dashboard-app/adding-search-and-pagination#4-updating-the-table)) the Table component which...

Hi, i am trying to learn nextjs from learn section of website and tried to download starter example using - "npx create-next-app@latest nextjs-dashboard --use-npm --example "https://github.com/vercel/next-learn/tree/main/dashboard/starter-example", Its throwing me some...

I noticed minor typos in the following file names: 1. https://nextjs.org/learn/dashboard-app/fetching-data#parallel-data-fetching | now | Ideal | | ---- | ---- | | /app/lib/data.js | /app/lib/data.ts | 2. https://nextjs.org/learn/dashboard-app/improving-accessibility#:~:text=FormSchema%20as%20follows%3A-,/app/lib/action.ts,-const%20FormSchema%20%3D | now...

I thought it would be a little confusing for anyone deploying on vercel since you build errors when deploying. This PR just adds a quick fix to the tsconfig giving...

I'm on chapter 14 of the NextJS tutorial and midway through the page, it mentions changing the Zod `parse()` function to `safeParse()`. The code sample shows the line change from...

Thee @heroicons/react library exports SVG icons as React components. These components accept all standard SVG props. However, the className prop passed into the component wasn't working as expected because SVGs...