-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFooter.js
More file actions
123 lines (121 loc) · 3.57 KB
/
Footer.js
File metadata and controls
123 lines (121 loc) · 3.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
import Link from "next/link";
import {
FaDiscord,
FaFacebook,
FaTwitter,
FaYoutube,
FaTelegram,
FaInstagram,
FaGithub,
FaLinkedin,
} from "react-icons/fa";
import { SiMeetup } from "react-icons/si";
export default function Footer() {
const socialLinks = [
{
name: "Discord",
url: "https://discord.gg/dTHMfJvauS",
icon: <FaDiscord className="h-6 w-6" />,
},
{
name: "Facebook",
url: "https://www.facebook.com/groups/pythonchiledev/",
icon: <FaFacebook className="h-6 w-6" />,
},
{
name: "Twitter",
url: "https://x.com/pythonchiledev",
icon: <FaTwitter className="h-6 w-6" />,
},
{
name: "YouTube",
url: "https://www.youtube.com/c/PythonChile",
icon: <FaYoutube className="h-6 w-6" />,
},
{
name: "Telegram",
url: "https://t.me/pythonchile",
icon: <FaTelegram className="h-6 w-6" />,
},
{
name: "Instagram",
url: "https://www.instagram.com/pythonchiledev",
icon: <FaInstagram className="h-6 w-6" />,
},
{
name: "GitHub",
url: "https://github.com/python-chile",
icon: <FaGithub className="h-6 w-6" />,
},
{
name: "LinkedIn",
url: "https://www.linkedin.com/groups/4929519/",
icon: <FaLinkedin className="h-6 w-6" />,
},
{
name: "Meetup",
url: "https://meetup.com/es/pythonchile",
icon: <SiMeetup className="h-6 w-6" />,
},
];
return (
<footer className="bg-black/40 backdrop-blur-md py-8 mt-auto border-t border-black/10">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
{/* Otros contenidos del footer */}
<div className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-8">
{/* Acerca de */}
<div>
<h3 className="text-lg font-semibold mb-4 text-black">
Acerca de Python Chile
</h3>
<p className="text-sm text-black/90">
Python Chile es el punto de encuentro de todos los apasionados por
Python en nuestro país.
</p>
</div>
{/* Enlaces útiles */}
<div>
<h3 className="text-lg font-semibold mb-4 text-black">
Enlaces útiles
</h3>
<ul className="space-y-2 text-sm">
<li>
<Link
href="/codigo-conducta"
className="text-black/90 hover:text-accent-yellow transition-colors duration-200"
>
Código de conducta
</Link>
</li>
{/* Otros enlaces */}
</ul>
</div>
{/* Redes sociales */}
<div>
<h3 className="text-lg font-semibold mb-4 text-black">Síguenos</h3>
<div className="flex flex-wrap gap-4">
{socialLinks.map((link) => (
<a
key={link.name}
href={link.url}
target="_blank"
rel="noopener noreferrer"
className="text-py-text hover:text-py-green transition-colors duration-200"
aria-label={`Visitar ${link.name}`}
>
{link.icon}
</a>
))}
</div>
</div>
</div>
<div className="mt-8 pt-6 border-t border-black/10 text-sm text-center text-black/70">
<p>
© {new Date().getFullYear()} Python Chile. Todos los derechos
reservados.
</p>
</div>
</div>
</footer>
);
}