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
Arush
committed
Aug 17, 2024
1 parent
94280ed
commit 988e081
Showing
2 changed files
with
30 additions
and
27 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 |
---|---|---|
|
@@ -7,35 +7,38 @@ import {BsDiscord, BsGithub} from "react-icons/bs"; | |
|
||
function Footer() { | ||
return ( | ||
<div className="relative border-t bg-[#0d1224] border-[#353951] text-white"> | ||
<div className="mx-auto px-6 sm:px-12 lg:max-w-[70rem] xl:max-w-[76rem] 2xl:max-w-[92rem] py-6 lg:py-10"> | ||
<div className="flex justify-center -z-40"> | ||
<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"> | ||
Arush Yadlapati | ||
</p> | ||
<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} /> | ||
</Link> | ||
<Link | ||
href={personalData.discord} | ||
target='_blank' | ||
className="transition-all text-sky-500 hover:scale-125 duration-300" | ||
> | ||
<BsDiscord size={30} /> | ||
</Link> | ||
<div className="relative border-t bg-[#0d1224] border-[#353951] text-white"> | ||
<div className="mx-auto px-6 sm:px-12 lg:max-w-[70rem] xl:max-w-[76rem] 2xl:max-w-[92rem] py-6 lg:py-10"> | ||
<div className="flex justify-center -z-40"> | ||
<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"> | ||
Arush Yadlapati | ||
</p> | ||
<a href="mailto:[email protected]" className="text-sm text-sky-500 hover:underline transition-all duration-300"> | ||
[email protected] | ||
</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} /> | ||
</Link> | ||
<Link | ||
href={personalData.discord} | ||
target='_blank' | ||
className="transition-all text-sky-500 hover:scale-125 duration-300" | ||
> | ||
<BsDiscord size={30} /> | ||
</Link> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div > | ||
</div > | ||
); | ||
}; | ||
|
||
|
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 |
---|---|---|
|
@@ -51,7 +51,7 @@ function HeroSection() { | |
</div> | ||
|
||
<div className="flex items-center gap-3"> | ||
<Link href="mailto:arush.[email protected]" className="bg-gradient-to-r to-pink-500 from-violet-600 p-[1px] rounded-full transition-all duration-300 hover:from-pink-500 hover:to-violet-600"> | ||
<Link href="mailto:hello@arush.me" className="bg-gradient-to-r to-pink-500 from-violet-600 p-[1px] rounded-full transition-all duration-300 hover:from-pink-500 hover:to-violet-600"> | ||
<button className="px-3 text-xs md:px-8 py-3 md:py-4 bg-[#0d1224] rounded-full border-none text-center md:text-sm font-medium uppercase tracking-wider text-[#ffff] no-underline transition-all duration-200 ease-out md:font-semibold flex items-center gap-1 hover:gap-3"> | ||
<span>Contact me</span> | ||
<RiContactsFill size={16} /> | ||
|