Skip to content

Commit

Permalink
Remove Discord Link
Browse files Browse the repository at this point in the history
  • Loading branch information
codeBreaker26 committed Dec 20, 2024
1 parent ad11fbd commit 10083c2
Show file tree
Hide file tree
Showing 2 changed files with 148 additions and 28 deletions.
120 changes: 120 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

56 changes: 28 additions & 28 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,35 +1,36 @@
import { FaLinkedin, FaYoutube, FaDiscord, FaInstagram } from "react-icons/fa";
import { FaLinkedin, FaYoutube, FaInstagram } from "react-icons/fa";
import { FaXTwitter, FaThreads } from "react-icons/fa6";
import Link from "next/link"
import Link from "next/link";

export default function Footer() {
const today = new Date()
const currentYear = today.getFullYear()
const today = new Date();
const currentYear = today.getFullYear();
return (
<footer className="flex flex-col items-center justify-center space-y-4 p-4 border-t-2 bg-white dark:bg-black">
<div className="flex justify-center space-x-6">
<Link href="https://x.com/FrancescoCiull4" target="_blank" rel="noopener noreferrer" className="text-2xl text-black dark:text-white hover:text-black hover:scale-125 transform transition duration-400">
<FaXTwitter />
</Link>
<Link href="https://www.linkedin.com/in/francesco-ciulla-roma/" target="_blank" rel="noopener noreferrer" className="text-2xl text-black dark:text-white hover:text-blue-900 hover:scale-125 transform transition duration-400">
<FaLinkedin />
</Link>

<Link
href="https://www.youtube.com/@francescociulla"
href="https://x.com/FrancescoCiull4"
target="_blank"
rel="noopener noreferrer"
className="text-2xl text-black dark:text-white hover:text-red-600 hover:scale-125 transform transition duration-400"
className="text-2xl text-black dark:text-white hover:text-black hover:scale-125 transform transition duration-400"
>
<FaYoutube />
<FaXTwitter />
</Link>
{/* <Link
href="https://www.linkedin.com/in/francesco-ciulla-roma/"
target="_blank"
rel="noopener noreferrer"
className="text-2xl text-black dark:text-white hover:text-blue-900 hover:scale-125 transform transition duration-400"
>
<FaLinkedin />
</Link> */}
<Link
href="https://discord.gg/4c-784142072763383858"
href="https://www.youtube.com/@francescociulla"
target="_blank"
rel="noopener noreferrer"
className="text-2xl text-black dark:text-white hover:text-indigo-600 hover:scale-125 transform transition duration-400"
className="text-2xl text-black dark:text-white hover:text-red-600 hover:scale-125 transform transition duration-400"
>
<FaDiscord />
<FaYoutube />
</Link>
<Link
href="https://www.instagram.com/francescociull4/"
Expand All @@ -48,19 +49,18 @@ export default function Footer() {
<FaThreads />
</Link>
</div>
<div className='text-black dark:text-white sm:flex sm:items-center sm:justify-center gap-3'>
<span className='sm:text-center gap-2 lg:flex lg:items-center lg:justify-center sm:block md:flex text-xs'>
<p className='gap-2'>
&copy; {currentYear}
</p>
<Link href="https://app.daily.dev/squads/rustdevs" className='hover:underline'>
<div className="text-black dark:text-white sm:flex sm:items-center sm:justify-center gap-3">
<span className="sm:text-center gap-2 lg:flex lg:items-center lg:justify-center sm:block md:flex text-xs">
<p className="gap-2">&copy; {currentYear}</p>
<Link
href="https://app.daily.dev/squads/rustdevs"
className="hover:underline"
>
Rustcrab
</Link>
<p>
All Rights Reserved.
</p>
<p>All Rights Reserved.</p>
</span>
</div>
</footer>
)
}
);
}

0 comments on commit 10083c2

Please sign in to comment.