Skip to content

Commit 3ed097b

Browse files
committed
linting error checked
1 parent aedc084 commit 3ed097b

File tree

2 files changed

+16
-10
lines changed

2 files changed

+16
-10
lines changed

src/components/AboutUs/GoalsSection.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ const GoalsSection: FC = () => {
5050
className="bg-white dark:bg-gray-800 rounded-lg shadow-sm p-6 border border-slate-100 dark:border-gray-700 transition-shadow group relative overflow-hidden"
5151
initial={animations.goalItem.initial}
5252
whileInView={{ opacity: 1, x: 0 }}
53-
whileHover={{
54-
y: -5,
53+
whileHover={{
54+
y: -5,
5555
boxShadow: '0 12px 20px rgba(0,0,0,0.12)',
56-
transition: { duration: 0.3, ease: 'easeInOut'
57-
}}}
56+
transition: { duration: 0.3, ease: 'easeInOut' },
57+
}}
5858
viewport={{ once: true }}
5959
>
6060
{/* Decorative element - colored top border */}

src/pages/About/ContactUs.tsx

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,8 @@ const ContactUs = () => {
193193
variants={fadeIn}
194194
>
195195
{socialLinks.map((social) => (
196-
<div className="flex justify-center">
197-
<motion.a
196+
<div className="flex justify-center">
197+
<motion.a
198198
key={social.href}
199199
href={social.href}
200200
target="_blank"
@@ -207,7 +207,11 @@ const ContactUs = () => {
207207
whileHover={{
208208
scale: 1.05,
209209
y: -3,
210-
transition: { type: 'spring', stiffness: 300, damping: 20 },
210+
transition: {
211+
type: 'spring',
212+
stiffness: 300,
213+
damping: 20,
214+
},
211215
}}
212216
style={{ transformOrigin: 'center center' }}
213217
>
@@ -224,8 +228,8 @@ const ContactUs = () => {
224228
<span className="text-xs text-gray-700 dark:text-gray-300 font-medium text-center">
225229
{social.name}
226230
</span>
227-
</motion.a>
228-
</div>
231+
</motion.a>
232+
</div>
229233
))}
230234
</motion.div>
231235
</motion.section>
@@ -264,7 +268,9 @@ const ContactUs = () => {
264268
className="inline-block px-6 py-3 bg-red-600 dark:bg-red-500 text-white rounded-full hover:bg-red-700 dark:hover:bg-red-400 transition-colors font-medium whitespace-nowrap"
265269
>
266270
<span>Join Chat</span>
267-
<span className="ml-1 text-lg leading-none relative top-[-1.2px]"></span>
271+
<span className="ml-1 text-lg leading-none relative top-[-1.2px]">
272+
273+
</span>
268274
</Link>
269275
</div>
270276
</div>

0 commit comments

Comments
 (0)