source: frontend/src/Components/HotelDetails/ContactBar.js@ e9b4ba9

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

prototype

  • Property mode set to 100644
File size: 1.1 KB
Line 
1import React from "react";
2import { Col, Container, Row, Button } from "react-bootstrap";
3import { RiContactsFill } from "react-icons/ri"
4
5const ContactBar = () => {
6 return (<>
7 <Container
8 className="py-3 px-4 my-4 h-100"
9 style={{
10 backgroundColor: "#159895",
11 borderRadius: "1em"
12 }}
13 >
14 <Row>
15 <Col className="d-flex flex-column justify-content-center m-auto p-auto" style={{color: "white"}}>
16 <h4 style={{marginBottom: "0"}}>Имате прашања? Контактирајте со сопственикот.</h4>
17 </Col>
18 <Col style={{textAlign: "right"}}>
19 <Button type="submit" style={{backgroundColor: "#159895", border: "2px solid white"}} size="md">
20 <span className="ikona my-1" color="white"><RiContactsFill style={{color: "white"}}/></span>
21 <span className="ikona mx-3">Контакт</span>
22 </Button>
23 </Col>
24 </Row>
25 </Container>
26 </>)
27}
28
29export default ContactBar;
Note: See TracBrowser for help on using the repository browser.