38 lines
1.4 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import daisies from '../assets/daisies.png';
import roses from '../assets/roses.png';
import gypsophila from '../assets/gypsophila.png';
const Page2 = () => {
return (
<div>
<h1>
Варианты собранных букетов:
</h1>
<div className="container text-center">
<div className="row">
<div className="col">
<img className="img_options" src = {daisies} alt="daisies" />
<p>
Букет из кустовых ромашек<br />15 веточек в красивом оформлении<br />Цена: 2900 руб.
</p>
</div>
<div className="col">
<img className="img_options" src = {roses} alt="roses" />
<p>
Букет из кустовых роз<br />Диаметр 40 см. Цвет роз можно поменять<br />Цена: 7500 руб.
</p>
</div>
<div className="col">
<img className="img_options" src = {gypsophila} alt="gypsophila" />
<p>
Букет из гипсофилов<br />Диаметр 30-35 см. Цвет гипсофилов можно поменять<br />Цена: 5000 руб.
</p>
</div>
</div>
</div>
</div>
);
};
export default Page2;