-
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
02b86b8
commit d7dfd78
Showing
3 changed files
with
43 additions
and
1 deletion.
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
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
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import React from "react"; | ||
|
||
export default function Footer() { | ||
return ( | ||
<div className="bg-blue-950 text-white py-6 text-center"> | ||
<div className="container mx-auto"> | ||
<p className="text-sm"> | ||
© 2024 Abhinav Choudhary. All rights reserved. | ||
</p> | ||
<p className="mt-2"> | ||
Connect with me:{" "} | ||
<a | ||
href="https://www.linkedin.com/in/abhinavchdhary/" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="text-blue-400 hover:underline" | ||
> | ||
</a>{" "} | ||
|{" "} | ||
<a | ||
href="https://github.com/Abhinav-Chdhary" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="text-blue-400 hover:underline" | ||
> | ||
GitHub | ||
</a>{" "} | ||
|{" "} | ||
<a | ||
href="mailto:[email protected]" | ||
className="text-blue-400 hover:underline" | ||
> | ||
</a> | ||
</p> | ||
</div> | ||
</div> | ||
); | ||
} |