@@ -153,12 +153,30 @@ class="size-4 shrink-0"
153
153
154
154
{{-- Right side --}}
155
155
<nav
156
- class =" flex w-full flex-wrap justify-center gap-x-5 gap-y-3 sm:w-auto lg:justify-around"
156
+ class =" flex w-full flex-wrap justify-center gap-x-5 gap-y-3 sm:w-auto lg:justify-around xl:gap-x-10 "
157
157
aria-label =" Footer navigation"
158
+ x-init ="
159
+ () => {
160
+ motion.inView($el, (element) => {
161
+ motion.animate(
162
+ Array.from($el.children),
163
+ {
164
+ x: [-10, 0],
165
+ opacity: [0, 1],
166
+ },
167
+ {
168
+ duration: 0.7,
169
+ ease: motion.backOut,
170
+ delay: motion.stagger(0.1),
171
+ },
172
+ )
173
+ })
174
+ }
175
+ "
158
176
>
159
177
{{-- Column --}}
160
178
<div class =" flex grow flex-col items-start gap-1 sm:grow-0" >
161
- <h2 class =" text-lg font-medium" >Explore</h2 >
179
+ <h2 class =" font-medium" >Explore</h2 >
162
180
<ul
163
181
class =" flex flex-col items-start text-sm text-gray-500 dark:text-gray-400"
164
182
>
@@ -221,7 +239,7 @@ class="inline-block px-px py-1.5 transition duration-300 will-change-transform h
221
239
222
240
{{-- Column --}}
223
241
<div class =" flex grow flex-col items-start gap-1 sm:grow-0" >
224
- <h2 class =" text-lg font-medium" >Mobile</h2 >
242
+ <h2 class =" font-medium" >Mobile</h2 >
225
243
<ul
226
244
class =" flex flex-col items-start text-sm text-gray-500 dark:text-gray-400"
227
245
>
@@ -257,7 +275,7 @@ class="inline-block px-px py-1.5 transition duration-300 will-change-transform h
257
275
258
276
{{-- Column --}}
259
277
<div class =" flex grow flex-col items-start gap-1 sm:grow-0" >
260
- <h2 class =" text-lg font-medium" >Desktop</h2 >
278
+ <h2 class =" font-medium" >Desktop</h2 >
261
279
<ul
262
280
class =" flex flex-col items-start text-sm text-gray-500 dark:text-gray-400"
263
281
>
@@ -305,7 +323,7 @@ class="flex items-center pt-3 pb-3"
305
323
306
324
{{-- Copyright --}}
307
325
<section
308
- class =" flex flex-col flex-wrap items-center gap-x-5 gap-y-3 text-center text-sm text-gray-500 md:flex-row md:justify-between md:text-left dark:text-gray-400/80"
326
+ class =" flex flex-col flex-wrap items-center gap-x-5 gap-y-3 text-center text-sm text-gray-500 md:flex-row md:justify-between md:text-left xl:gap-x-10 dark:text-gray-400/80"
309
327
aria-label =" Credits and copyright information"
310
328
>
311
329
<div
0 commit comments