Epic Next.js 14 Tutorial Part 2: Building Out The Home Page

These posts are just what I was looking for! Thank you for your easy explanation.

I may be mistaken, but I think label props in Link type on line 10 is text. (repo is correct though :+1:
The code below the sentence β€œLet’s create the following interfaces. ”

// incorrect
interface Link {
  id: number;
  url: string;
  label: string;
}

// correct
interface Link {
  id: number;
  url: string;
  text: string;
}
1 Like