source: frontend/src/Components/MostPopularRoutes/MostPopularRoutesCont.js

Last change on this file was e6c2521, checked in by darsov2 <62809499+darsov2@…>, 6 months ago

images upload/download impl, other fixes

  • Property mode set to 100644
File size: 1.6 KB
Line 
1import React from "react";
2import Route from "./Route";
3import { Col, Container, Row } from "react-bootstrap";
4
5const MostPopularRoutesCont = () => {
6 return(
7 <>
8 <Container className="my-5">
9 <h3 style={{textAlign: "left"}} className="mb-5">Најпребарувани рути</h3>
10 <Row className="my-3">
11 <Col>
12 <Route destination1="Скопје" destination2="Битола" imag1="https://netpress.com.mk/wp-content/uploads/2021/03/skopje-voin-na-konj-centar.jpg" imag2="https://i.imgur.com/MKEXLI5.png"/>
13 </Col>
14 <Col>
15 <Route destination1="Скопје" destination2="Тетово" imag1="https://netpress.com.mk/wp-content/uploads/2021/03/skopje-voin-na-konj-centar.jpg" imag2="https://www.kovz.gov.mk/articleImage.img/2022/07/06/_B2C3197-min.jpg"/>
16 </Col>
17 </Row>
18 <Row>
19 <Col>
20 <Route destination1="Скопје" destination2="Велес" imag1="https://netpress.com.mk/wp-content/uploads/2021/03/skopje-voin-na-konj-centar.jpg" imag2="https://i.imgur.com/UmcAwJS.png"/>
21 </Col>
22 <Col>
23 <Route destination1="Скопје" destination2="Охрид" imag1="https://netpress.com.mk/wp-content/uploads/2021/03/skopje-voin-na-konj-centar.jpg" imag2="https://i.imgur.com/aRfzEFm.jpg"/>
24 </Col>
25 </Row>
26 </Container>
27 </>
28 )
29}
30
31export default MostPopularRoutesCont
Note: See TracBrowser for help on using the repository browser.