Files
bestpc/src/components/footer/Footer.tsx

69 lines
2.4 KiB
TypeScript
Raw Normal View History

2025-05-14 15:11:00 +07:00
export function Footer() {
return (
<footer class="border-t-[11px] border-[#1c039b] w-full">
<div class="container">
<a href="/" class="block my-[30px]">
<img
src="/assets/images/logo-footer.png"
class="block w-[180px] h-[45px] object-contain"
width="100%"
height="100%"
alt="logo"
/>
</a>
<div class="main-footer grid grid-cols-4">
<div class="item">
<h3 class="title font-bold">Về chúng tôi</h3>
<a href="" class="block">
Đc quyền
</a>
<a href="" class="block">
Mua online
</a>
<a href="" class="block">
Bộ sưu tập
</a>
<a href="/tin-tuc" class="block">
Blog
</a>
<div class="list-social flex items-center mt-[45px]">
<a href="" target="_blank" class="mr-[10px]">
<i class="icon_2025 facebook"></i>
</a>
<a href="" target="_blank">
<i class="icon_2025 zalo"></i>
</a>
</div>
</div>
<div class="item">
<h3 class="title font-bold">Tuyển dụng</h3>
<a href="">Liên hệ</a>
<a href="">Điều khoản</a>
<a href="">Chính sách bảo mật</a>
<a href="">Trở thành đi tác</a>
</div>
<div class="item">
<h3 class="title font-bold">Liên kết</h3>
<a href="hurasoft.com">Hurasoft.com</a>
</div>
<div class="item">
<h3 class="title font-bold">Giới thiệu</h3>
<b class="text-[16px]">
BESTPC kênh tổng hợp tin khuyến mãi chuyên nghiệp đu tiên
Việt Nam, cho phép bạn tìm kiếm giảm giá, tin ưu đãi từ nghành
hàng laptop, thiết bị điện tử, máy tính, xây dựng cấu hình PC
chuyên nghiệp. còn rất nhiều giảm giá đc quyền dành riêng
cho bạn.
</b>
</div>
</div>
</div>
<div class="footer-bottom bg-[#ebebeb] py-[15px]">
<b class="text-center block">
© Copyright 2025 by Hurasoft. All Rights Reserved.
</b>
</div>
</footer>
);
}