Skip to content

Commit

Permalink
SWD-18: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
thongdanghoang committed May 25, 2024
1 parent c9a7d2c commit 22a4ab8
Showing 1 changed file with 52 additions and 32 deletions.
84 changes: 52 additions & 32 deletions frontend/src/modules/shared/components/footer/AppFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,55 +2,75 @@ import './AppFooter.scss';
import {ReactElement} from 'react';
import logo from '@assets/images/logo.svg';


export default function AppFooter(): ReactElement {
return (
<>
<div className="app-footer">
<footer className="page-footer font-small blue pt-4">
<div className="container-fluid ">
<div className="row">
<footer className="page-footer font-small blue pt-4">
<div className="container-fluid ">
<div className="row">
<div className="col-md-6 mt-md-0 mt-3">
<div className="Footer-Content">
<h5 className="text-uppercase"><img src={logo} alt="" /></h5>
<p>Morbi cursus porttitor enim lobortis molestie.
Duis gravida turpis dui, eget bibendum magna congue nec.</p>
<h1>(212)555-0114 hoặc swapme@customerservice.com</h1>
</div>
<h5 className="text-uppercase">
<img src={logo} alt="" />
</h5>
<p>
Morbi cursus porttitor enim lobortis molestie. Duis gravida
turpis dui, eget bibendum magna congue nec.
</p>
<h1>(212)555-0114 hoặc swapme@customerservice.com</h1>
</div>
</div>

<hr className="clearfix w-100 d-md-none pb-0"/>
<hr className="clearfix w-100 d-md-none pb-0" />

<div className="col-md-3 mb-md-0 mb-3">
<ul className="list-unstyled text-end">
<h5 className="text-uppercase">Hỗ trợ khách hàng</h5>
<li><a >Trung tâm trợ giúp</a></li>
<li><a >An toàn mua bán</a></li>
<li><a >Liên hệ hỗ trợ</a></li>
</ul>
<ul className="list-unstyled text-end">
<h5 className="text-uppercase">Hỗ trợ khách hàng</h5>
<li>
<a>Trung tâm trợ giúp</a>
</li>
<li>
<a>An toàn mua bán</a>
</li>
<li>
<a>Liên hệ hỗ trợ</a>
</li>
</ul>
</div>

<div className="col-md-2 mb-md-0 mb-3">
<ul className="list-unstyled text-end text-success">
<h5 className="text-uppercase">Về chúng tôi</h5>
<li><a>Giới thiệu</a></li>
<li><a>Quy chế hoạt động</a></li>
<li><a>Chính sách bảo mật</a></li>
<li><a>Giải quyết tranh chấp</a></li>
</ul>
<ul className="list-unstyled text-end text-success">
<h5 className="text-uppercase">Về chúng tôi</h5>
<li>
<a>Giới thiệu</a>
</li>
<li>
<a>Quy chế hoạt động</a>
</li>
<li>
<a>Chính sách bảo mật</a>
</li>
<li>
<a>Giải quyết tranh chấp</a>
</li>
</ul>
</div>
</div>
</div>
</div>

<div className="Thai"><hr/></div>


<div className="d-flex justify-content-between pb-3">
<div className="Footer-VersionApp">Swapme Version 12.03.02</div>
<div className="Footer-Location">Địa chỉ: Đại học FPT _ E2a-7, Đường D1, Phường Long Thạnh Mỹ, Q9, Thành phố Thủ Đức, TP.HCM</div>
</div>
<div className="Thai">
<hr />
</div>

</footer>
<div className="d-flex justify-content-between pb-3">
<div className="Footer-VersionApp">Swapme Version 12.03.02</div>
<div className="Footer-Location">
Địa chỉ: Đại học FPT _ E2a-7, Đường D1, Phường Long Thạnh Mỹ, Q9,
Thành phố Thủ Đức, TP.HCM
</div>
</div>
</footer>
</div>
</>
);
Expand Down

0 comments on commit 22a4ab8

Please sign in to comment.