generated from said7388/developer-portfolio
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
988e081
commit 7b89fcb
Showing
1 changed file
with
10 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
); | ||
}; | ||
|
||
|