File tree Expand file tree Collapse file tree 17 files changed +346
-71
lines changed Expand file tree Collapse file tree 17 files changed +346
-71
lines changed Original file line number Diff line number Diff line change 1
1
"""empty message
2
2
3
- Revision ID: 7dfa1f8691ff
3
+ Revision ID: bac56bdb0f3e
4
4
Revises:
5
- Create Date: 2021-09-14 07:33:46.611897
5
+ Create Date: 2021-09-14 09:48:00.362327
6
6
7
7
"""
8
8
from alembic import op
9
9
import sqlalchemy as sa
10
10
11
11
12
12
# revision identifiers, used by Alembic.
13
- revision = '7dfa1f8691ff '
13
+ revision = 'bac56bdb0f3e '
14
14
down_revision = None
15
15
branch_labels = None
16
16
depends_on = None
Original file line number Diff line number Diff line change 79
79
"dependencies" : {
80
80
"@material-ui/core" : " ^4.12.3" ,
81
81
"@material-ui/icons" : " ^4.11.2" ,
82
- "bootstrap" : " ^4.6 .0" ,
82
+ "bootstrap" : " ^5.1 .0" ,
83
83
"jsonwebtoken" : " ^8.5.1" ,
84
84
"jwt-decode" : " ^3.1.2" ,
85
85
"leaflet" : " ^1.7.1" ,
86
86
"material-ui-image" : " ^3.3.2" ,
87
87
"material-ui-password-field" : " ^2.1.2" ,
88
88
"prop-types" : " ^15.7.2" ,
89
89
"react" : " ^16.14.0" ,
90
+ "react-bootstrap" : " ^2.0.0-beta.6" ,
90
91
"react-dom" : " ^16.14.0" ,
91
92
"react-hook-form" : " ^7.14.2" ,
92
93
"react-leaflet" : " ^2.8.0" ,
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ const Card = props => {
8
8
const linkToBuserviceId = "/buservices/" . concat ( props . i ) ;
9
9
return (
10
10
< div className = "card_container" >
11
- < Link to = { linkToBuserviceId } >
11
+ < Link className = "link-card-search" to = { linkToBuserviceId } >
12
12
< div className = "card_image" />
13
13
< div className = "card_container_text" >
14
14
< span className = "card_category" > { props . category } </ span >
Original file line number Diff line number Diff line change @@ -11,10 +11,14 @@ const Footer = () => (
11
11
</ div >
12
12
< div >
13
13
< div className = "footer_text" >
14
- < Link to = "/about" > About us</ Link >
14
+ < Link className = "a-footer" to = "/about" >
15
+ About us
16
+ </ Link >
15
17
</ div >
16
18
< div >
17
- < Link to = "/contact" > Contact</ Link >
19
+ < Link className = "a-footer" to = "/contact" >
20
+ Contact
21
+ </ Link >
18
22
</ div >
19
23
</ div >
20
24
</ div >
@@ -26,8 +30,18 @@ const Footer = () => (
26
30
< div className = "footer_terms" >
27
31
< div className = "footer_terms_divider" />
28
32
< span className = "footer_terms_text" >
29
- 2021© < Link to = "/terms" > Terms & Conditions </ Link > • < Link to = "/privacy" > Privacy Policy</ Link > •{ " " }
30
- < Link to = "/cookies" > Cookies</ Link >
33
+ 2021©{ " " }
34
+ < Link className = "a-footer" to = "/terms" >
35
+ Terms & Conditions
36
+ </ Link > { " " }
37
+ •{ " " }
38
+ < Link className = "a-footer" to = "/privacy" >
39
+ Privacy Policy
40
+ </ Link > { " " }
41
+ •{ " " }
42
+ < Link className = "a-footer" to = "/cookies" >
43
+ Cookies
44
+ </ Link >
31
45
</ span >
32
46
</ div >
33
47
</ div >
Original file line number Diff line number Diff line change
1
+ import React , { Fragment } from "react" ;
2
+ import Carousel from "react-bootstrap/Carousel" ;
3
+ import "../../styles/gallery.scss" ;
4
+
5
+ const Gallery = ( ) => {
6
+ return (
7
+ < Fragment >
8
+ < Carousel fade >
9
+ < Carousel . Item >
10
+ < img
11
+ className = "d-block w-100 img-carousel"
12
+ src = "https://i.ibb.co/pZ6169w/2.png"
13
+ alt = "First slide"
14
+ />
15
+ < Carousel . Caption >
16
+ { /* <h3>First slide label</h3>
17
+ <p>Nulla vitae elit libero, a pharetra augue mollis interdum.</p> */ }
18
+ </ Carousel . Caption >
19
+ </ Carousel . Item >
20
+ < Carousel . Item >
21
+ < img
22
+ className = "d-block w-100 img-carousel"
23
+ src = "https://i.ibb.co/5cV4YqK/1.png"
24
+ alt = "Second slide"
25
+ />
26
+
27
+ < Carousel . Caption >
28
+ { /* <h3>Second slide label</h3>
29
+ <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p> */ }
30
+ </ Carousel . Caption >
31
+ </ Carousel . Item >
32
+ < Carousel . Item >
33
+ < img
34
+ className = "d-block w-100 img-carousel"
35
+ src = "https://i.ibb.co/V3h15xt/3.png"
36
+ alt = "Third slide"
37
+ />
38
+
39
+ < Carousel . Caption >
40
+ { /* <h3>Third slide label</h3>
41
+ <p>Praesent commodo cursus magna, vel scelerisque nisl consectetur.</p> */ }
42
+ </ Carousel . Caption >
43
+ </ Carousel . Item >
44
+ </ Carousel >
45
+ </ Fragment >
46
+ ) ;
47
+ } ;
48
+
49
+ export default Gallery ;
Original file line number Diff line number Diff line change @@ -7,12 +7,14 @@ const Review = props => {
7
7
return (
8
8
< div className = "review_container" >
9
9
< div className = "header_review" >
10
- < div className = "review_profile_image" />
10
+ < div className = "review_profile_image" >
11
+ < img className = "review_new_image" src = { props . image } > </ img >
12
+ </ div >
11
13
< div className = "review_profile_text" >
12
14
< span className = "review_name" > { props . name } </ span >
13
- < span className = "review_chat" >
15
+ { /* <span className="review_chat">
14
16
<i className="fas fa-comment-dots" /> Send a message
15
- </ span >
17
+ </span> */ }
16
18
</ div >
17
19
</ div >
18
20
< span className = "review_date" > { props . date } </ span >
@@ -25,6 +27,7 @@ const Review = props => {
25
27
} ;
26
28
27
29
Review . propTypes = {
30
+ image : PropTypes . string . isRequired ,
28
31
name : PropTypes . string . isRequired ,
29
32
date : PropTypes . string . isRequired ,
30
33
text : PropTypes . string . isRequired
You can’t perform that action at this time.
0 commit comments