Last change
on this file since 0f5aa27 was e6c2521, checked in by darsov2 <62809499+darsov2@…>, 10 months ago |
images upload/download impl, other fixes
|
-
Property mode
set to
100644
|
File size:
2.6 KB
|
Rev | Line | |
---|
[e6c2521] | 1 | import React from "react";
|
---|
| 2 | import Destination from "./Destination";
|
---|
| 3 | import { Container, Row, Col, Image } from "react-bootstrap";
|
---|
| 4 |
|
---|
| 5 | const MostVisitedBar = () => {
|
---|
| 6 | return (
|
---|
| 7 | <>
|
---|
| 8 | <Container className="my-5">
|
---|
| 9 | <h3 style={{textAlign: "left"}} className="mb-5">Најпосетувани дестинации во Македонија</h3>
|
---|
| 10 | <Row className="my-3">
|
---|
| 11 | <Col className="w-25">
|
---|
| 12 | <Destination imag="https://netpress.com.mk/wp-content/uploads/2021/03/skopje-voin-na-konj-centar.jpg" destination="Скопје"></Destination>
|
---|
| 13 | </Col>
|
---|
| 14 | <Col className="w-25">
|
---|
| 15 | <Destination imag="https://i.imgur.com/Iv1qDid.png" destination="Крушево"></Destination>
|
---|
| 16 | </Col>
|
---|
| 17 | <Col className="w-25">
|
---|
| 18 | <Destination imag="https://i.imgur.com/aRfzEFm.jpg" destination="Охрид"></Destination>
|
---|
| 19 | </Col>
|
---|
| 20 | <Col className="w-25">
|
---|
| 21 | <Destination imag="https://scontent.fskp4-1.fna.fbcdn.net/v/t1.6435-9/139339650_2860623610819063_7442736283701492085_n.jpg?_nc_cat=107&ccb=1-7&_nc_sid=a26aad&_nc_ohc=s8XtKBc6LKoAX-442-c&_nc_ht=scontent.fskp4-1.fna&oh=00_AfC3P9wA3dVZWI3i9_ZFT-W4jWbLEwypw79y7Lt-3DzhyA&oe=64B3BF6C" destination="Маврово"></Destination>
|
---|
| 22 | </Col>
|
---|
| 23 | </Row>
|
---|
| 24 | <Row>
|
---|
| 25 | <Col className="w-25">
|
---|
| 26 | <Destination imag="https://netpress.com.mk/wp-content/uploads/2021/03/skopje-voin-na-konj-centar.jpg" destination="Скопје"></Destination>
|
---|
| 27 | </Col>
|
---|
| 28 | <Col className="w-25">
|
---|
| 29 | <Destination imag="https://i.imgur.com/Iv1qDid.png" destination="Крушево"></Destination>
|
---|
| 30 | </Col>
|
---|
| 31 | <Col className="w-25">
|
---|
| 32 | <Destination imag="https://i.imgur.com/aRfzEFm.jpg" destination="Охрид"></Destination>
|
---|
| 33 | </Col>
|
---|
| 34 | <Col className="w-25">
|
---|
| 35 | <Destination imag="https://scontent.fskp4-1.fna.fbcdn.net/v/t1.6435-9/139339650_2860623610819063_7442736283701492085_n.jpg?_nc_cat=107&ccb=1-7&_nc_sid=a26aad&_nc_ohc=s8XtKBc6LKoAX-442-c&_nc_ht=scontent.fskp4-1.fna&oh=00_AfC3P9wA3dVZWI3i9_ZFT-W4jWbLEwypw79y7Lt-3DzhyA&oe=64B3BF6C" destination="Маврово"></Destination>
|
---|
| 36 | </Col>
|
---|
| 37 | </Row>
|
---|
| 38 | </Container>
|
---|
| 39 | </>
|
---|
| 40 | )
|
---|
| 41 | }
|
---|
| 42 |
|
---|
| 43 | export default MostVisitedBar |
---|
Note:
See
TracBrowser
for help on using the repository browser.