Skip to content

Commit

Permalink
✨ style: reduce animation
Browse files Browse the repository at this point in the history
  • Loading branch information
eshanized committed Jan 16, 2025
1 parent bb19932 commit 85e88bb
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/pages/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,46 +5,46 @@ import { MissionSection } from '../components/about/MissionSection';

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

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

{/* Team Section */}
<section>
<h2 className="text-3xl font-bold text-gray-900 text-center mb-12">
<h2 className="text-2xl font-semibold text-gray-900 text-center mb-8">
Our Team Structure
</h2>
<div className="overflow-hidden rounded-xl shadow-md bg-white p-6">
<div className="rounded-lg shadow-sm bg-white p-6">
<TeamSection />
</div>
</section>

{/* Timeline Section */}
<section>
<h2 className="text-3xl font-bold text-gray-900 text-center mb-12">
<h2 className="text-2xl font-semibold text-gray-900 text-center mb-8">
Release Timeline
</h2>
<div className="bg-gray-50 p-6 rounded-lg shadow-lg">
<div className="bg-white p-6 rounded-lg shadow-sm">
<Timeline />
</div>
</section>
Expand Down

0 comments on commit 85e88bb

Please sign in to comment.