30 lines
832 B
JavaScript
30 lines
832 B
JavaScript
import React from 'react';
|
|
import './AboutDelivery.css';
|
|
|
|
function AboutDelivery() {
|
|
return (
|
|
<section className="about-delivery">
|
|
<div className="container">
|
|
<h2>About Our Delivery</h2>
|
|
<div className="delivery-cards">
|
|
<img src={process.env.PUBLIC_URL + '/images/1 poc.svg'} alt="Изображение" />
|
|
<img src={process.env.PUBLIC_URL + '/images/2 poc.svg'} alt="Изображение" />
|
|
<img src={process.env.PUBLIC_URL + '/images/3 poc.svg'} alt="Изображение" />
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|
|
|
|
function DeliveryCard({ image, title, description }) {
|
|
return (
|
|
<div className="delivery-card">
|
|
<img src={image} alt={title} />
|
|
<h3>{title}</h3>
|
|
<p>{description}</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default AboutDelivery;
|