Skip to content

Instantly share code, notes, and snippets.

@diego3g
Created September 28, 2020 21:56
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save diego3g/e56ae93fcc841249f80c9a6ad653fda1 to your computer and use it in GitHub Desktop.
Save diego3g/e56ae93fcc841249f80c9a6ad653fda1 to your computer and use it in GitHub Desktop.
Server do curso de Next.js
{
"categories": [
{ "id": "camisetas", "title": "Camisetas" },
{ "id": "calcas", "title": "Calças" }
],
"products": [
{ "id": 1, "title": "Camiseta Front-end", "price": 79.9, "category_id": "camisetas", "slug": "camiseta-front-ends"},
{ "id": 2, "title": "Camiseta CSharpolin", "price": 69.9, "category_id": "camisetas", "slug": "camiseta-csharpolin"},
{ "id": 3, "title": "Calça preta back-end", "price": 129.9, "category_id": "calcas", "slug": "calca-preta-back-end"},
{ "id": 4, "title": "Calça azul do React", "price": 109.9, "category_id": "calcas", "slug": "calca-azul-react"}
],
"recommended": [
{ "id": 1, "title": "Camiseta Front-end", "price": 79.9, "category_id": "camisetas", "slug": "camiseta-front-ends"},
{ "id": 4, "title": "Calça azul do React", "price": 109.9, "category_id": "calcas", "slug": "calca-azul-react"}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment