Files
QuickDrops/src/components/AboutDelivery.js
2025-03-29 10:48:33 +03:00

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;