This commit is contained in:
Gabriel Peron 2024-11-24 16:21:32 +01:00
parent 34e81ea2cf
commit 8ae0f94daf

View file

@ -1,5 +1,5 @@
import React from 'react'; import React from 'react';
import { Github, Mail, Globe, MessageSquare } from 'lucide-react'; import { Github, Mail, Globe, MessageSquare, Instagram } from 'lucide-react';
export default function Footer() { export default function Footer() {
return ( return (
@ -43,9 +43,18 @@ export default function Footer() {
> >
<Globe className="w-6 h-6" /> <Globe className="w-6 h-6" />
</a> </a>
<a
href="https://www.instagram.com/the_hoster_one/"
target="_blank"
rel="noopener noreferrer"
className="text-gray-400 hover:text-cyan-400 transition-colors"
aria-label="Instagram"
>
<Instagram className="w-6 h-6" />
</a>
</div> </div>
</div> </div>
</div> </div>
</footer> </footer>
); );
} }