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.
18 lines
556 B
18 lines
556 B
import React from 'react';
|
|
|
|
export const MottoBlock: React.FC = () => {
|
|
return (
|
|
<div className="title_header">
|
|
<div className="title_header_box">
|
|
<p className={'icon_moped'}>
|
|
<h1 className="typography_h1"> Горячая пицца для каждого </h1>
|
|
</p>
|
|
</div>
|
|
<div className="title_header_box">
|
|
<p className={'icon_fire'}>
|
|
<h1 className="typography_h1"> Долетим за 35 минут </h1>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}; |