first commit
This commit is contained in:
89
src/components/Footers/AdminFooter.js
Normal file
89
src/components/Footers/AdminFooter.js
Normal file
@@ -0,0 +1,89 @@
|
||||
/*!
|
||||
|
||||
=========================================================
|
||||
* Argon Dashboard React - v1.2.4
|
||||
=========================================================
|
||||
|
||||
* Product Page: https://www.creative-tim.com/product/argon-dashboard-react
|
||||
* Copyright 2024 Creative Tim (https://www.creative-tim.com)
|
||||
* Licensed under MIT (https://github.com/creativetimofficial/argon-dashboard-react/blob/master/LICENSE.md)
|
||||
|
||||
* Coded by Creative Tim
|
||||
|
||||
=========================================================
|
||||
|
||||
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
*/
|
||||
/*eslint-disable*/
|
||||
|
||||
// reactstrap components
|
||||
import { Container, Row, Col, Nav, NavItem, NavLink } from "reactstrap";
|
||||
|
||||
const Footer = () => {
|
||||
return (
|
||||
<footer className="footer">
|
||||
<Row className="align-items-center justify-content-xl-between">
|
||||
<Col xl="6">
|
||||
<div className="copyright text-center text-xl-left text-muted">
|
||||
© {new Date().getFullYear()}{" "}
|
||||
<a
|
||||
className="font-weight-bold ml-1"
|
||||
href="https://www.creative-tim.com?ref=adr-admin-footer"
|
||||
rel="noopener noreferrer"
|
||||
target="_blank"
|
||||
>
|
||||
Creative Tim
|
||||
</a>
|
||||
</div>
|
||||
</Col>
|
||||
|
||||
<Col xl="6">
|
||||
<Nav className="nav-footer justify-content-center justify-content-xl-end">
|
||||
<NavItem>
|
||||
<NavLink
|
||||
href="https://www.creative-tim.com?ref=adr-admin-footer"
|
||||
rel="noopener noreferrer"
|
||||
target="_blank"
|
||||
>
|
||||
Creative Tim
|
||||
</NavLink>
|
||||
</NavItem>
|
||||
|
||||
<NavItem>
|
||||
<NavLink
|
||||
href="https://www.creative-tim.com/presentation?ref=adr-admin-footer"
|
||||
rel="noopener noreferrer"
|
||||
target="_blank"
|
||||
>
|
||||
About Us
|
||||
</NavLink>
|
||||
</NavItem>
|
||||
|
||||
<NavItem>
|
||||
<NavLink
|
||||
href="http://blog.creative-tim.com?ref=adr-admin-footer"
|
||||
rel="noopener noreferrer"
|
||||
target="_blank"
|
||||
>
|
||||
Blog
|
||||
</NavLink>
|
||||
</NavItem>
|
||||
|
||||
<NavItem>
|
||||
<NavLink
|
||||
href="https://github.com/creativetimofficial/argon-dashboard/blob/master/LICENSE.md?ref=adr-admin-footer"
|
||||
rel="noopener noreferrer"
|
||||
target="_blank"
|
||||
>
|
||||
MIT License
|
||||
</NavLink>
|
||||
</NavItem>
|
||||
</Nav>
|
||||
</Col>
|
||||
</Row>
|
||||
</footer>
|
||||
);
|
||||
};
|
||||
|
||||
export default Footer;
|
||||
84
src/components/Footers/AuthFooter.js
Normal file
84
src/components/Footers/AuthFooter.js
Normal file
@@ -0,0 +1,84 @@
|
||||
/*!
|
||||
|
||||
=========================================================
|
||||
* Argon Dashboard React - v1.2.4
|
||||
=========================================================
|
||||
|
||||
* Product Page: https://www.creative-tim.com/product/argon-dashboard-react
|
||||
* Copyright 2024 Creative Tim (https://www.creative-tim.com)
|
||||
* Licensed under MIT (https://github.com/creativetimofficial/argon-dashboard-react/blob/master/LICENSE.md)
|
||||
|
||||
* Coded by Creative Tim
|
||||
|
||||
=========================================================
|
||||
|
||||
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
*/
|
||||
/*eslint-disable*/
|
||||
|
||||
// reactstrap components
|
||||
import { NavItem, NavLink, Nav, Container, Row, Col } from "reactstrap";
|
||||
|
||||
const Login = () => {
|
||||
return (
|
||||
<>
|
||||
<footer className="py-5">
|
||||
<Container>
|
||||
<Row className="align-items-center justify-content-xl-between">
|
||||
<Col xl="6">
|
||||
<div className="copyright text-center text-xl-left text-muted">
|
||||
© {new Date().getFullYear()}{" "}
|
||||
<a
|
||||
className="font-weight-bold ml-1"
|
||||
href="https://www.creative-tim.com?ref=adr-auth-footer"
|
||||
target="_blank"
|
||||
>
|
||||
Creative Tim
|
||||
</a>
|
||||
</div>
|
||||
</Col>
|
||||
<Col xl="6">
|
||||
<Nav className="nav-footer justify-content-center justify-content-xl-end">
|
||||
<NavItem>
|
||||
<NavLink
|
||||
href="https://www.creative-tim.com?ref=adr-auth-footer"
|
||||
target="_blank"
|
||||
>
|
||||
Creative Tim
|
||||
</NavLink>
|
||||
</NavItem>
|
||||
<NavItem>
|
||||
<NavLink
|
||||
href="https://www.creative-tim.com/presentation?ref=adr-auth-footer"
|
||||
target="_blank"
|
||||
>
|
||||
About Us
|
||||
</NavLink>
|
||||
</NavItem>
|
||||
<NavItem>
|
||||
<NavLink
|
||||
href="http://blog.creative-tim.com?ref=adr-auth-footer"
|
||||
target="_blank"
|
||||
>
|
||||
Blog
|
||||
</NavLink>
|
||||
</NavItem>
|
||||
<NavItem>
|
||||
<NavLink
|
||||
href="https://github.com/creativetimofficial/argon-dashboard/blob/master/LICENSE.md?ref=adr-auth-footer"
|
||||
target="_blank"
|
||||
>
|
||||
MIT License
|
||||
</NavLink>
|
||||
</NavItem>
|
||||
</Nav>
|
||||
</Col>
|
||||
</Row>
|
||||
</Container>
|
||||
</footer>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default Login;
|
||||
Reference in New Issue
Block a user