@@ -85,34 +85,44 @@ export default function Footer(props: IFooterProps) {
85
85
className = { `spacing ${ styles . bgTransition } bg-secondary` }
86
86
ref = { observe }
87
87
>
88
- < div className = "justify-center lg:flex" >
89
- < div className = "py- flex-1" >
90
- < div className = "flex justify-center font-ibold lg:justify-start" >
91
- < Image
92
- src = "/images/sei-logo.svg"
93
- width = { 100 }
94
- height = { 100 }
95
- alt = "SEI Logo"
96
- />
97
- < p className = "pl-6 text-white lg:flex-1" >
98
- Semana da < br />
99
- Engenharia
100
- < br />
101
- Informática
102
- </ p >
103
- </ div >
88
+ < div className = "flex flex-col justify-between gap-16 py-10 lg:flex-row" >
89
+ < div className = "flex items-start justify-center font-ibold lg:justify-start" >
90
+ < Image
91
+ src = "/images/sei-logo.svg"
92
+ width = { 100 }
93
+ height = { 100 }
94
+ alt = "SEI Logo"
95
+ />
96
+ < p className = "pl-6 text-white lg:flex-1" >
97
+ Semana da < br />
98
+ Engenharia
99
+ < br />
100
+ Informática
101
+ </ p >
102
+ </ div >
103
+
104
+ < div className = "mx-2 mt-20 hidden justify-center pb-10 lg:flex" >
105
+ < Animation
106
+ text = {
107
+ props . footerAnimationText != undefined ? (
108
+ props . footerAnimationText
109
+ ) : (
110
+ < DefaultAnimation />
111
+ )
112
+ }
113
+ >
114
+ { props . children }
115
+ </ Animation >
104
116
</ div >
105
- < div className = "flex-2 py-10" >
106
- < div className = "grid grid-rows-2 justify-items-center gap-8 font-iregular text-sm text-white lg:grid-cols-2 lg:justify-items-end" >
117
+
118
+ < div className = "flex-2" >
119
+ < div className = "grid grid-rows-2 justify-items-center gap-8 whitespace-nowrap font-iregular text-sm text-white lg:grid-cols-2 lg:justify-items-start" >
107
120
< Link
108
121
href = "https://2022.seium.org/"
109
122
className = "text-white hover:underline"
110
123
>
111
124
Previous Edition
112
125
</ Link >
113
- < Link href = "/docs/regulamento.pdf" className = "hover:underline" >
114
- General Regulation
115
- </ Link >
116
126
< Link
117
127
href = "https://docs.google.com/forms/d/e/1FAIpQLSdV1bSyW2tcLuTC_jJCGdZ5NZHUlgETK7nQkOmyDzwb7eFS4Q/viewform"
118
128
className = "hover:underline"
@@ -122,6 +132,9 @@ export default function Footer(props: IFooterProps) {
122
132
< Link href = "/docs/survival.pdf" className = "hover:underline" >
123
133
Survival Guide
124
134
</ Link >
135
+ < Link href = "/docs/regulamento.pdf" className = "hover:underline" >
136
+ General Regulation
137
+ </ Link >
125
138
</ div >
126
139
< div className = "flex justify-center lg:justify-end" >
127
140
< div className = "mt-10 text-white sm:w-1/2 lg:mt-0" >
@@ -130,19 +143,6 @@ export default function Footer(props: IFooterProps) {
130
143
</ div >
131
144
</ div >
132
145
</ div >
133
- < div className = "invisible -mt-20 flex justify-center pb-10 lg:visible" >
134
- < Animation
135
- text = {
136
- props . footerAnimationText != undefined ? (
137
- props . footerAnimationText
138
- ) : (
139
- < DefaultAnimation />
140
- )
141
- }
142
- >
143
- { props . children }
144
- </ Animation >
145
- </ div >
146
146
</ div >
147
147
) ;
148
148
}
0 commit comments