JSFiddle - React, Tailwind, and code Playground
by serio
JavaScript
items = [
{headline: 'Your Image. No compromises.', secondary: 'The most professional way to showcase your work.'},
{headline: 'We’re here for you.', secondary: 'Questions? Our portfolio experts are here 24/7'},
{headline: 'You’re in good company.', secondary: 'Format is used by creative professionals in over 140 countries'},
{headline: 'Step into the spotlight.', secondary: 'We showcase portfolios in Spotlight and Format Magazine which get thousands of views daily.'},
{headline: 'We’re growing with you.', secondary: 'New features, new themes — we’re constantly creating ways to improve your portfolio.'}
]
items.forEach(function(item, i) {
console.log('headline: ' + item.headline)
console.log('secondary: ' + item.secondary)
})