30 lines
1.3 KiB
TypeScript
30 lines
1.3 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||
// See LICENSE.txt for license information.
|
||
|
||
// pablo - translate each text. turn svgs into react components?
|
||
export default [
|
||
{
|
||
id: '1',
|
||
title: 'Welcome',
|
||
description: 'Mattermost is an open source platform for developer collaboration. Secure, flexible, and integrated with your tools.',
|
||
image: require('./illustrations/chat.svg').default,
|
||
},
|
||
{
|
||
id: '2',
|
||
title: 'Collaborate in real-time',
|
||
description: 'Persistent channels, direct messaging, and file sharing works seamlessly so you can stay connected, wherever you are.',
|
||
image: require('./illustrations/team_communication.svg').default,
|
||
},
|
||
{
|
||
id: '3',
|
||
title: 'Start secure audio calls instantly',
|
||
description: 'When typing isn’t fast enough, switch from channel-based chat to secure audio calls with a single tap.',
|
||
image: require('./illustrations/calls.svg').default,
|
||
},
|
||
{
|
||
id: '4',
|
||
title: 'Integrate with tools you love',
|
||
description: 'Go beyond chat with tightly-integratedproduct solutions matched to common development processes.',
|
||
image: require('./illustrations/integrations.svg').default,
|
||
},
|
||
];
|