Last change
on this file since efaa053 was e6c2521, checked in by darsov2 <62809499+darsov2@…>, 10 months ago |
images upload/download impl, other fixes
|
-
Property mode
set to
100644
|
File size:
1.1 KB
|
Line | |
---|
1 | import React from "react";
|
---|
2 | import { Col, Container, Row, Button } from "react-bootstrap";
|
---|
3 | import { RiContactsFill } from "react-icons/ri"
|
---|
4 |
|
---|
5 | const 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 |
|
---|
29 | export default ContactBar; |
---|
Note:
See
TracBrowser
for help on using the repository browser.