You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
586 B
19 lines
586 B
import React from 'react'
|
|
import Typography from '../../component/Typography';
|
|
|
|
export const MottoBlock: React.FC = () => {
|
|
return (
|
|
<div className="title_header">
|
|
<div className="title_header_box">
|
|
<p className={'icon_moped '}>
|
|
<Typography> Горячая пицца для каждого </Typography>
|
|
</p>
|
|
</div>
|
|
<div className="title_header_box">
|
|
<p className={'icon_fire'}>
|
|
<Typography>Долетим за 35 минут </Typography>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}; |