Skip to content

Commit

Permalink
Update Footer.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
rNLKJA committed Jan 6, 2024
1 parent 22e9c35 commit e30f522
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions components/layout/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const Footer = () => {
<div className="text-left flex flex-col h-full">
<p className="font-bold text-2xl">Follow me</p>
<br />
<div className="flex flex-col tablet:flex-wrap gap-8 justify-center">
<div className="flex flex-col tablet:flex-wrap justify-center">
<FooterIconLink
IconComponent={SiVirginmedia}
href="https://www.xiaohongshu.com/user/profile/5ddb3cf2000000000100bcab"
Expand Down Expand Up @@ -206,9 +206,14 @@ function FooterLink({ href, children }) {

function FooterIconLink({ href, IconComponent, content }) {
return (
<div className="flex items-center gap-3">
<IconComponent style={{ fontSize: "24px" }} />
<a className="link-hover" href={href} alt={content} target="_blank">
<div className="flex space-x-4 items-center p-3">
<IconComponent className="text-2xl" />
<a
className="link-hover text-lg leading-loose link-hover"
href={href}
alt={content}
target="_blank"
>
{content}
</a>
</div>
Expand Down

0 comments on commit e30f522

Please sign in to comment.