Skip to content

Commit 85e88bb

Browse files
committed
✨ style: reduce animation
1 parent bb19932 commit 85e88bb

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/pages/About.tsx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,46 +5,46 @@ import { MissionSection } from '../components/about/MissionSection';
55

66
export default function About() {
77
return (
8-
<div className="py-16 bg-gradient-to-b from-gray-50 via-white to-gray-100">
8+
<div className="py-16 bg-gray-50">
99
<div className="max-w-7xl mx-auto px-6 sm:px-8 lg:px-12">
1010
{/* Hero Section */}
1111
<motion.div
1212
initial={{ opacity: 0, y: 20 }}
1313
animate={{ opacity: 1, y: 0 }}
1414
transition={{ duration: 0.8 }}
15-
className="text-center mb-16"
15+
className="text-center mb-12"
1616
>
17-
<h1 className="text-5xl font-extrabold text-gray-900">
17+
<h1 className="text-4xl font-bold text-gray-900">
1818
About Snigdha OS
1919
</h1>
20-
<p className="mt-4 text-xl text-gray-600 max-w-2xl mx-auto">
21-
The most advanced penetration testing distribution, made for security professionals.
20+
<p className="mt-4 text-lg text-gray-600 max-w-2xl mx-auto">
21+
The most advanced penetration testing distribution, crafted for security professionals.
2222
</p>
2323
</motion.div>
2424

2525
{/* Content Sections */}
26-
<div className="space-y-20">
26+
<div className="space-y-16">
2727
{/* Mission Section */}
28-
<section className="bg-cornflower-blue/5 rounded-2xl p-8 shadow-lg">
28+
<section className="bg-white rounded-lg p-6 shadow-sm">
2929
<MissionSection />
3030
</section>
3131

3232
{/* Team Section */}
3333
<section>
34-
<h2 className="text-3xl font-bold text-gray-900 text-center mb-12">
34+
<h2 className="text-2xl font-semibold text-gray-900 text-center mb-8">
3535
Our Team Structure
3636
</h2>
37-
<div className="overflow-hidden rounded-xl shadow-md bg-white p-6">
37+
<div className="rounded-lg shadow-sm bg-white p-6">
3838
<TeamSection />
3939
</div>
4040
</section>
4141

4242
{/* Timeline Section */}
4343
<section>
44-
<h2 className="text-3xl font-bold text-gray-900 text-center mb-12">
44+
<h2 className="text-2xl font-semibold text-gray-900 text-center mb-8">
4545
Release Timeline
4646
</h2>
47-
<div className="bg-gray-50 p-6 rounded-lg shadow-lg">
47+
<div className="bg-white p-6 rounded-lg shadow-sm">
4848
<Timeline />
4949
</div>
5050
</section>

0 commit comments

Comments
 (0)