File size: 5,051 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
import React from "react";
import { MDBCol, MDBContainer, MDBRow, MDBFooter } from "mdbreact";
import { Link } from "react-router-dom";
const FooterPagePro = () => {
return (
<MDBFooter color="blue-grey" className="page-footer font-small lighten-5 pt-0">
<div className="bg-success">
<MDBContainer>
<MDBRow className="py-4 d-flex align-items-center">
<MDBCol md="6" lg="5" className="text-center text-md-left mb-4 mb-md-0">
<h6 className="mb-0 white-text">
Get connected with us on social networks!
</h6>
</MDBCol>
<MDBCol md="6" lg="7" className="text-center text-md-right">
<Link className="fb-ic ml-0">
<i className="fab fa-facebook-f white-text mr-1 mr-lg-4"> </i>
</Link>
<Link className="tw-ic">
<i className="fab fa-twitter white-text mr-1 mr-lg-4"> </i>
</Link>
<Link className="gplus-ic">
<i className="fab fa-google-plus-g white-text mr-1 mr-lg-4"> </i>
</Link>
<Link className="li-ic">
<i className="fab fa-linkedin-in white-text mr-1 mr-lg-4"> </i>
</Link>
<Link className="ins-ic">
<i className="fab fa-instagram white-text mr-1 mr-lg-4"> </i>
</Link>
</MDBCol>
</MDBRow>
</MDBContainer>
</div>
<MDBContainer className="mt-5 mb-4 text-center text-md-left">
<MDBRow className="mt-3">
<MDBCol md="3" lg="4" xl="3" className="mb-4 dark-grey-text">
<h6 className="font-weight-bold">
TravelYaari
</h6>
<hr className="deep-purple accent-2 mb-4 mt-0 d-inline-block mx-auto" style={{ width: "70px" }} />
<p className="text-justify">
A Solution that activates the travelling bug with vibrant imagery and working on to continuously provides enjoyable quality excursions/trips on time and on budget.We Focus on developing enthusiastically satisfied customers all of the time.
</p>
</MDBCol>
<MDBCol md="2" lg="2" xl="2" className="mb-4 dark-grey-text">
<h6 className="text-uppercase font-weight-bold">
<strong>Services</strong>
</h6>
<hr className="deep-purple accent-2 mb-4 mt-0 d-inline-block mx-auto" style={{ width: "60px" }} />
<p>
<Link to="/shop" className="dark-grey-text">
Places
</Link>
</p>
<p>
<Link to="/gallery" className="dark-grey-text">
Gallery
</Link>
</p>
<p>
<Link to="/team" className="dark-grey-text">
Our Team
</Link>
</p>
<p>
<Link to="/about" className="dark-grey-text">
About Us
</Link>
</p>
</MDBCol>
<MDBCol md="3" lg="2" xl="2" className="mb-4 dark-grey-text">
<h6 className="text-uppercase font-weight-bold">
<strong>Useful links</strong>
</h6>
<hr className="deep-purple accent-2 mb-4 mt-0 d-inline-block mx-auto" style={{ width: "60px" }} />
<p>
<Link to="./../user/dashboard" className="dark-grey-text">
Your Account
</Link>
</p>
<p>
<Link to="/cart" className="dark-grey-text">
Wishlist
</Link>
</p>
<p>
<Link to="/contact" className="dark-grey-text">
Contact Us
</Link>
</p>
<p>
<Link to="#" className="dark-grey-text">
Help
</Link>
</p>
</MDBCol>
<MDBCol md="4" lg="3" xl="3" className="mb-4 dark-grey-text">
<h6 className="text-uppercase font-weight-bold">
<strong>Contact</strong>
</h6>
<hr className="deep-purple accent-2 mb-4 mt-0 d-inline-block mx-auto" style={{ width: "60px" }} />
<p>
<i className="fa fa-home mr-3" /> Gorakhpur, UP 274203, India
</p>
<p>
<i className="fa fa-envelope mr-3" /> info@travelyaari.com
</p>
<p>
<i className="fa fa-phone mr-3" /> + 01 234 567 88
</p>
<p>
<i className="fa fa-print mr-3" /> + 01 234 567 89
</p>
</MDBCol>
</MDBRow>
</MDBContainer>
<div className="footer-copyright text-center py-3 bg-success">
<MDBContainer fluid>
© {new Date().getFullYear()} Copyright:{" "}
<a href="https://github.com/shsarv"> www.travelyaari.com</a>
</MDBContainer>
</div>
</MDBFooter>
);
}
export default FooterPagePro; |