You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mvfront-react/components/layouts/Footer.jsx

42 lines
1.1 KiB

import Link from "next/link";
import {useTranslation} from "next-i18next";
import {Button, Row, Col} from "reactstrap";
import {useBbox} from "@components/layouts/useBbox";
import Paypal from "@components/banner/Paypal";
import Logo from '@components/Logo.jsx';
import LanguageSelector from "@components/layouts/LanguageSelector";
const Footer = () => {
const linkStyle = {whiteSpace: "nowrap"};
const {t} = useTranslation();
const [bboxLink1, link1] = useBbox();
const [bboxLink2, link2] = useBbox();
const [bboxLink3, link3] = useBbox();
const [bboxLink4, link4] = useBbox();
const [bboxLink5, link5] = useBbox();
//<Col className="col-
return (
<footer>
<Row>
<Col className="col-auto me-auto">
<Button className="btn-info">
<a href="/">
Soutenez-nous
</a>
</Button>
</Col>
<Col className="col-auto ms-auto">
<Button className="btn-info">
<a href="/">
Soutenez-nous
</a>
</Button>
</Col>
</Row>
</footer >
);
};
export default Footer;