File size: 1,577 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import { useTranslate } from 'i18n-calypso';
import BloombergLogo from 'calypso/assets/images/start-with/Bloomberg.svg';
import CNNLogo from 'calypso/assets/images/start-with/CNN.svg';
import CondeNast from 'calypso/assets/images/start-with/Conde_Nast.svg';
import DisneyLogo from 'calypso/assets/images/start-with/Disney.svg';
import MetaLogo from 'calypso/assets/images/start-with/Meta.svg';
import NewsCorpLogo from 'calypso/assets/images/start-with/News_Corp.svg';
import SlackLogo from 'calypso/assets/images/start-with/Slack.svg';
import TechCrunchImage from 'calypso/assets/images/start-with/Tech_Crunch.svg';
import TimeLogo from 'calypso/assets/images/start-with/Time.svg';
import USATodayImage from 'calypso/assets/images/start-with/USA_Today.svg';

import './style.scss';

export const LogoBar = () => {
	const translate = useTranslate();

	return (
		<div className="logo-bar">
			<img src={ TimeLogo } alt={ translate( 'Time Logo' ) } />
			<img src={ DisneyLogo } alt={ translate( 'Disney Logo' ) } />
			<img src={ SlackLogo } alt={ translate( 'Slack Logo' ) } />
			<img src={ CNNLogo } alt={ translate( 'CNN Logo' ) } />
			<img src={ TechCrunchImage } alt={ translate( 'Tech Crunch Logo' ) } />
			<img src={ USATodayImage } alt={ translate( 'USA Today Sports Logo' ) } />
			<img src={ BloombergLogo } alt={ translate( 'Bloomberg Logo' ) } />
			<img src={ MetaLogo } alt={ translate( 'Meta Logo' ) } />
			<img src={ NewsCorpLogo } alt={ translate( 'News Corp Logo' ) } />
			<img src={ CondeNast } alt={ translate( 'Conde Nast Logo' ) } />
		</div>
	);
};