Last active
September 4, 2019 12:22
-
-
Save OtavioBraga/9eceb61b3db3f604d0826560dd954d3d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const newsList = [ | |
{ | |
title: 'Título', | |
resume: 'Resumo', | |
featuredImage: '', | |
readMore: 'https://...', | |
publisherLogo: 'https://logodownload.org/wp-content/uploads/2017/07/estadao-logo-2.png', | |
}, | |
]; | |
const institutionsLogos = [ | |
{ | |
name: 'La Salle', | |
image: 'https://gvcollege.lasalle.edu.br/themes/porvir.blue//imagens/login/login.empresa.png', | |
}, | |
]; | |
const sellerLogos = [ | |
{ | |
name: 'Livrarias Curitiba', | |
image: 'https://editoracontexto.com.br/blog/wp-content/uploads/2016/06/livrarias-curitiba-500x222.jpg', | |
}, | |
]; | |
const testimonials = [ | |
{ | |
name: `Teste da Silva`, | |
role: `Diretor de escola`, | |
avatar: ``, | |
body: `A plataforma é incrível`, | |
}, | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment