-
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
d1fdeb8
commit 35529f8
Showing
8 changed files
with
70 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import React from "react"; | ||
import Image from "next/image"; | ||
import { FaGithub } from "react-icons/fa"; | ||
import { FaXTwitter, FaTelegram } from "react-icons/fa6"; | ||
|
||
const Footer = () => { | ||
return ( | ||
<footer className="flex flex-col mt-8 space-y-2"> | ||
<hr className=" border-t-2 border-[#00DCF7]" /> | ||
<div className="flex flex-col sm:flex-row sm:justify-between sm:px-6"> | ||
<div className="flex flex-row items-center justify-center space-x-2"> | ||
<Image | ||
src={"/images/AmirKakavand.jpg"} | ||
width={"80"} | ||
height={"80"} | ||
alt="Photo of Amir Kakavand" | ||
className="rounded-full w-14 h-14 hidden sm:block" | ||
/> | ||
<span className="text-xs sm:text-xl"> | ||
Designed and developed by Amir Kakavand | ||
</span> | ||
</div> | ||
{/* Social Media */} | ||
<div className="flex flex-row items-center justify-center space-x-10 mt-2 sm:mt-0"> | ||
<a | ||
href="https://github.com/AmirKakavand" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<FaGithub className="text-3xl" /> | ||
</a> | ||
<a | ||
href="https://x.com/Amirkkvnd" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<FaXTwitter className="text-3xl" /> | ||
</a> | ||
<a | ||
href="https://t.me/Amirkkvnd" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<FaTelegram className="text-3xl" /> | ||
</a> | ||
</div> | ||
</div> | ||
</footer> | ||
); | ||
}; | ||
|
||
export default Footer; |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.