reactjs
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
//Modules
|
||||
import React from 'react';
|
||||
|
||||
//Style
|
||||
import "./Footer.css";
|
||||
|
||||
//Components
|
||||
import Logo from "../images/logo-licht.png";
|
||||
import {
|
||||
BrowserRouter as Router,
|
||||
Switch,
|
||||
Route,
|
||||
Link
|
||||
} from "react-router-dom";
|
||||
|
||||
class Footer extends React.Component {
|
||||
render(){
|
||||
return (
|
||||
<footer>
|
||||
<div className="container-fluid">
|
||||
<div className="row">
|
||||
<div className="col-md-4">
|
||||
<div className="FooterColumn">
|
||||
<Link to="/"><img className="FooterLogo" src={Logo} /></Link>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-md-4">
|
||||
<div className="FooterColumn">
|
||||
<h4 className="text-center">Contact</h4>
|
||||
<p>Adres <br/> Mail <br/> Facebook,inst, twitter</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col-md-4">
|
||||
<div className="FooterColumn">
|
||||
<h4 className="text-center">Contact</h4>
|
||||
<p>Adres <br/> Mail <br/> Facebook,inst, twitter</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<p className="text-center mt-5">Copyright © AlfaPrentice 2020 - 2021 </p>
|
||||
</footer>
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
export default Footer;
|
||||
Reference in New Issue
Block a user