Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Discord Link #187

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>
)
}
);
}