Skip to content

Commit

Permalink
Added new email ([email protected])
Browse files Browse the repository at this point in the history
  • Loading branch information
Arush committed Aug 17, 2024
1 parent 94280ed commit 988e081
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 27 deletions.
55 changes: 29 additions & 26 deletions app/components/footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 >
);
};

Expand Down
2 changes: 1 addition & 1 deletion app/components/homepage/hero-section/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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} />
Expand Down

0 comments on commit 988e081

Please sign in to comment.