1- import { useState } from 'react' ;
21
32import Navbar from './Navbar' ;
43import { IcBaselineDiscord } from './components/IcBaselineDiscord' ;
@@ -8,11 +7,6 @@ import { RiLinkedinFill } from './components/RiLinkedinFill';
87import { RiMailFill } from './components/RiMailFill' ;
98import { Button } from './components/ui/button' ;
109import { Card , CardContent } from './components/ui/card' ;
11- import {
12- Collapsible ,
13- CollapsibleContent ,
14- CollapsibleTrigger ,
15- } from './components/ui/collapsible' ;
1610import { NumberTicker } from './components/ui/number-ticker' ;
1711import { BlurFade } from './components/ui/blur-fade' ;
1812import { DottedMap } from './components/ui/dotted-map' ;
@@ -22,15 +16,6 @@ import { AnimatedShinyText } from './components/ui/animated-shiny-text';
2216import { cn } from './lib/utils' ;
2317
2418function App ( ) {
25- const [ openItems , setOpenItems ] = useState < string [ ] > ( [ ] ) ;
26-
27- const toggleItem = ( itemId : string ) => {
28- setOpenItems ( prev =>
29- prev . includes ( itemId )
30- ? prev . filter ( id => id !== itemId )
31- : [ ...prev , itemId ]
32- ) ;
33- } ;
3419
3520 return (
3621 < div className = "min-h-screen bg-[#26587e]" >
@@ -53,7 +38,7 @@ function App() {
5338 ) }
5439 >
5540 < AnimatedShinyText className = "inline-flex items-center justify-center px-4 py-1 transition ease-out hover:text-white hover:duration-300" >
56- < span className = "text-gray-300" > Eventos | workshops | Aulas e muito mais sobre o universo Python</ span >
41+ < span className = "text-gray-300" > Eventos | workshops | e muito mais sobre o universo Python</ span >
5742 </ AnimatedShinyText >
5843 </ div >
5944 </ BlurFade >
@@ -81,10 +66,12 @@ function App() {
8166 de voluntários. Nossa missão é democratizar o acesso ao
8267 conhecimento.
8368 </ p >
84- < Button className = "flex items-center gap-3 text-lg text-black font-semibold px-6 py-7 rounded-2xl bg-[#ffd86b] hover:bg-[#ffd86b]/90" >
85- < RiInstagramFill className = "size-8" />
86- Participe da Nossa Comunidade
87- </ Button >
69+ < a href = "https://www.instagram.com/py013_baixadasantista/" target = "_blank" rel = "noopener noreferrer" >
70+ < Button className = "flex items-center gap-3 text-lg text-black font-semibold px-6 py-7 rounded-2xl bg-[#ffd86b] hover:bg-[#ffd86b]/90 hover:cursor-pointer" >
71+ < RiInstagramFill className = "size-8" />
72+ Participe da Nossa Comunidade
73+ </ Button >
74+ </ a >
8875 </ div >
8976 </ div >
9077 </ div >
@@ -143,19 +130,19 @@ function App() {
143130
144131 < div className = "grid grid-cols-1 md:grid-cols-3 gap-6" >
145132 < Card className = "bg-[#ffd86b] text-black border-none" >
146- < CardContent className = "text-center flex items-center justify-center gap-2" >
133+ < CardContent className = "text-center flex flex-col items-center justify-center gap-2" >
147134 < p className = "text-2xl font-bold" > +< NumberTicker value = { 20 } /> </ p >
148135 < p className = "font-semibold" > Cidades impactadas</ p >
149136 </ CardContent >
150137 </ Card >
151138 < Card className = "bg-[#ffd86b] text-black border-none" >
152- < CardContent className = "text-center flex items-center justify-center gap-2" >
139+ < CardContent className = "text-center flex flex-col items-center justify-center gap-2" >
153140 < p className = "text-2xl font-bold" > +< NumberTicker value = { 1800 } /> </ p >
154141 < p className = "font-semibold" > Seguidores nas nossas redes</ p >
155142 </ CardContent >
156143 </ Card >
157144 < Card className = "bg-[#ffd86b] text-black border-none" >
158- < CardContent className = "text-center flex items-center justify-center gap-2" >
145+ < CardContent className = "text-center flex flex-col items-center justify-center gap-2" >
159146 < p className = "text-2xl font-bold" > +< NumberTicker value = { 40 } /> </ p >
160147 < p className = "font-semibold" > Eventos realizados</ p >
161148 </ CardContent >
@@ -171,15 +158,21 @@ function App() {
171158 < h2 className = "text-4xl font-bold mb-12 text-white" > Onde Estamos</ h2 >
172159 < div className = "grid grid-cols-2 md:grid-cols-3 gap-6" >
173160 < div className = "social-button flex flex-col items-center" >
174- < RiInstagramFill className = "size-24 mb-2" />
161+ < a href = "https://www.instagram.com/py013_baixadasantista/" target = "_blank" rel = "noopener noreferrer" >
162+ < RiInstagramFill className = "size-24 mb-2" />
163+ </ a >
175164 < span className = "font-semibold" > Instagram</ span >
176165 </ div >
177166 < div className = "social-button flex flex-col items-center" >
178- < IcBaselineDiscord className = "size-24 mb-2" />
167+ < a href = "https://discord.gg/NnrjunGjHm" target = "_blank" rel = "noopener noreferrer" >
168+ < IcBaselineDiscord className = "size-24 mb-2" />
169+ </ a >
179170 < span className = "font-semibold" > Discord</ span >
180171 </ div >
181172 < div className = "social-button flex flex-col items-center" >
182- < RiLinkedinFill className = "size-24 mb-2" />
173+ < a href = "https://www.linkedin.com/company/py013/" target = "_blank" rel = "noopener noreferrer" >
174+ < RiLinkedinFill className = "size-24 mb-2" />
175+ </ a >
183176 < span className = "font-semibold" > LinkedIn</ span >
184177 </ div >
185178 </ div >
@@ -268,13 +261,23 @@ function App() {
268261
269262 < footer className = "bg-[#3690D9] py-8 px-4" >
270263 < div className = "max-w-6xl mx-auto flex flex-col md:flex-row justify-between items-center" >
271- < div className = "text-white mb-4 md:mb-0" > @2025 Py013</ div >
264+ < div className = "text-white mb-4 md:mb-0" > @2026 Py013 - Todos os direitos reservados </ div >
272265 < div className = "flex space-x-4" >
273- < RiLinkedinFill className = "w-6 h-6 text-white" />
274- < RiInstagramFill className = "w-6 h-6 text-white" />
275- < IcBaselineDiscord className = "w-6 h-6 text-white" />
276- < RiGithubFill className = "w-6 h-6 text-white" />
277- < RiMailFill className = "w-6 h-6 text-white" />
266+ < a href = "https://www.linkedin.com/company/py013/" target = "_blank" rel = "noopener noreferrer" >
267+ < RiLinkedinFill className = "w-6 h-6 text-white" />
268+ </ a >
269+ < a href = "https://www.instagram.com/py013_baixadasantista/" target = "_blank" rel = "noopener noreferrer" >
270+ < RiInstagramFill className = "w-6 h-6 text-white" />
271+ </ a >
272+ < a href = "https://discord.gg/NnrjunGjHm" target = "_blank" rel = "noopener noreferrer" >
273+ < IcBaselineDiscord className = "w-6 h-6 text-white" />
274+ </ a >
275+ < a href = "https://github.com/Py013/" target = "_blank" rel = "noopener noreferrer" >
276+ < RiGithubFill className = "w-6 h-6 text-white" />
277+ </ a >
278+ < a href = "mailto:[email protected] " target = "_blank" rel = "noopener noreferrer" > 279+ < RiMailFill className = "w-6 h-6 text-white" />
280+ </ a >
278281 </ div >
279282 </ div >
280283 </ footer >
0 commit comments