Skip to content

Commit

Permalink
Added email changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ArushYadlapati committed Aug 17, 2024
1 parent 988e081 commit 7b89fcb
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions app/components/footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,32 +13,37 @@ function Footer() {
<div className="absolute top-0 h-[1px] w-1/2 bg-gradient-to-r from-transparent via-violet-500 to-transparent"></div>
</div>
<div className="flex flex-col md:flex-row items-center justify-between">
<p className="text-sm">
<p className="font-mono text-lg md:text-xl lg:text-1xl text-sky-500 transition-all duration-300">
Arush Yadlapati
</p>
<a href="mailto:[email protected]" className="text-sm text-sky-500 hover:underline transition-all duration-300">
<a href="mailto:[email protected]"
className="font-mono text-lg md:text-xl lg:text-xl text-sky-500 hover:text-sky-500">
<span className="hover:underline hover:text-[#19F2B3] hover:decoration-[#19F2B3]">
[email protected]
</span>
</a>


<div className="flex items-center gap-5">
<Link
href={personalData.github}
target='_blank'
className="transition-all text-sky-500 hover:scale-125 duration-300"
>
<BsGithub size={30} />
<BsGithub size={30}/>
</Link>
<Link
href={personalData.discord}
target='_blank'
className="transition-all text-sky-500 hover:scale-125 duration-300"
>
<BsDiscord size={30} />
<BsDiscord size={30}/>
</Link>

</div>
</div>
</div>
</div >
</div>
);
};

Expand Down

0 comments on commit 7b89fcb

Please sign in to comment.