Commit 8548f3ec authored by Phạm Quang Bảo's avatar Phạm Quang Bảo

fix/href logo on header

parent 60672bc5
...@@ -57,15 +57,30 @@ function Header() { ...@@ -57,15 +57,30 @@ function Header() {
}} }}
/> />
<div className="flex gap-2"> <div className="flex gap-2">
{[Facebook, Twitter, Youtube, Linkedin].map((Icon, i) => ( {[
<a Facebook,
key={i} Twitter,
href="#" Youtube,
className="bg-white size-7 rounded-full flex items-center justify-center text-[#063e8e] hover:opacity-80 transition" Linkedin
> ].map((Icon, i) => {
<Icon size={16} /> const hrefs = [
</a> "https://www.facebook.com/VCCIHCMC/",
))} "https://twitter.com/VCCI_HCM",
"https://www.youtube.com/user/VCCIHCMC",
"https://www.linkedin.com/company/vietnam-chamber-of-commerce-and-industry-ho-chi-minh-city-branch-vcci-hcm-?trk=biz-companies-cym",
];
return (
<a
key={i}
href={hrefs[i]}
target="_blank"
rel="noopener noreferrer"
className="bg-white size-7 rounded-full flex items-center justify-center text-[#063e8e] hover:opacity-80 transition"
>
<Icon size={16} />
</a>
);
})}
</div> </div>
</div> </div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment