33 lines
993 B
JavaScript
33 lines
993 B
JavaScript
|
|
|
|
const Footer = () => {
|
|
return (
|
|
<div>
|
|
<div style={{
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
width: '100%',
|
|
marginTop: 50,
|
|
marginBottom: 50,
|
|
}}>
|
|
<img src="./logo5121.png" alt="#" style={{
|
|
height: 53,
|
|
width: 53,
|
|
}}/>
|
|
<span style={{
|
|
color: '#F68C43',
|
|
width: '30%',
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
alignItems: 'start',
|
|
fontWeight: 700,
|
|
fontFamily: 'Raleway',
|
|
fontSize: '20px',
|
|
}}>Путешествия <p style={{color: '#4EB0F2'}} >Просто!</p></span>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Footer; |