mirror of
https://github.com/Snigdha-OS/snigdhaos-web-dev.git
synced 2025-09-08 22:04:55 +02:00
chore(extend): more ..
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { Terminal, Lock, Cpu, Cloud, Database, Shield } from 'lucide-react';
|
import { Terminal, Lock, Cpu, Cloud, Database, Shield, Wifi, Laptop } from 'lucide-react';
|
||||||
|
|
||||||
export default function Features() {
|
export default function Features() {
|
||||||
const features = [
|
const features = [
|
||||||
@@ -32,6 +32,74 @@ export default function Features() {
|
|||||||
icon: <Shield className="h-8 w-8" />,
|
icon: <Shield className="h-8 w-8" />,
|
||||||
title: "Enterprise Ready",
|
title: "Enterprise Ready",
|
||||||
description: "Suitable for both individual and enterprise-level security testing."
|
description: "Suitable for both individual and enterprise-level security testing."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: <Wifi className="h-8 w-8" />,
|
||||||
|
title: "Wireless Security",
|
||||||
|
description: "Equipped with tools for wireless network auditing and penetration testing."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: <Laptop className="h-8 w-8" />,
|
||||||
|
title: "Portable and Lightweight",
|
||||||
|
description: "Run Snigdha OS on a USB drive for portability without leaving traces on devices."
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
const toolCategories = [
|
||||||
|
{
|
||||||
|
title: "Information Gathering",
|
||||||
|
tools: [
|
||||||
|
"Network scanning and enumeration",
|
||||||
|
"OSINT tools",
|
||||||
|
"DNS analysis",
|
||||||
|
"Web reconnaissance",
|
||||||
|
"Social media analysis"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Vulnerability Analysis",
|
||||||
|
tools: [
|
||||||
|
"Automated scanning tools",
|
||||||
|
"Database assessment",
|
||||||
|
"Cisco tools",
|
||||||
|
"Fuzzing tools",
|
||||||
|
"Web app vulnerability scanning"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Exploitation Tools",
|
||||||
|
tools: [
|
||||||
|
"Metasploit Framework",
|
||||||
|
"Buffer Overflow exploitation",
|
||||||
|
"SQL injection tools",
|
||||||
|
"Social Engineering tools"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Post-Exploitation",
|
||||||
|
tools: [
|
||||||
|
"Privilege escalation",
|
||||||
|
"Persistence",
|
||||||
|
"Data exfiltration",
|
||||||
|
"Forensics tools"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Wireless Attacks",
|
||||||
|
tools: [
|
||||||
|
"WiFi cracking tools",
|
||||||
|
"Aircrack-ng suite",
|
||||||
|
"WEP/WPA/WPA2 attacks",
|
||||||
|
"Bluetooth hacking"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Reverse Engineering",
|
||||||
|
tools: [
|
||||||
|
"Disassemblers",
|
||||||
|
"Debuggers",
|
||||||
|
"Binary analysis tools"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -42,7 +110,7 @@ export default function Features() {
|
|||||||
<div className="text-center mb-16">
|
<div className="text-center mb-16">
|
||||||
<h1 className="text-4xl font-bold text-gray-900 mb-4">Features</h1>
|
<h1 className="text-4xl font-bold text-gray-900 mb-4">Features</h1>
|
||||||
<p className="text-xl text-gray-600 max-w-3xl mx-auto">
|
<p className="text-xl text-gray-600 max-w-3xl mx-auto">
|
||||||
Discover the powerful features that make Kali Linux the premier platform for security testing.
|
Discover the powerful features that make Snigdha OS the premier platform for security testing.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -59,30 +127,23 @@ export default function Features() {
|
|||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Tools Categories */}
|
{/* Tool Categories Section */}
|
||||||
<div className="mt-20">
|
<div className="mt-20">
|
||||||
<h2 className="text-3xl font-bold text-center mb-12">Tool Categories</h2>
|
<h2 className="text-3xl font-bold text-center mb-12">Tool Categories</h2>
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
||||||
<div className="bg-white p-6 rounded-lg shadow-lg">
|
{toolCategories.map((category, index) => (
|
||||||
<h3 className="text-xl font-semibold mb-4 text-[#754ffe]">Information Gathering</h3>
|
<div key={index} className="bg-white p-6 rounded-lg shadow-lg">
|
||||||
|
<h3 className="text-xl font-semibold mb-4 text-[#754ffe]">{category.title}</h3>
|
||||||
<ul className="space-y-2 text-gray-600">
|
<ul className="space-y-2 text-gray-600">
|
||||||
<li>• Network scanning and enumeration</li>
|
{category.tools.map((tool, i) => (
|
||||||
<li>• OSINT tools</li>
|
<li key={i}>• {tool}</li>
|
||||||
<li>• DNS analysis</li>
|
))}
|
||||||
<li>• Web reconnaissance</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div className="bg-white p-6 rounded-lg shadow-lg">
|
|
||||||
<h3 className="text-xl font-semibold mb-4 text-[#754ffe]">Vulnerability Analysis</h3>
|
|
||||||
<ul className="space-y-2 text-gray-600">
|
|
||||||
<li>• Automated scanning tools</li>
|
|
||||||
<li>• Database assessment</li>
|
|
||||||
<li>• Cisco tools</li>
|
|
||||||
<li>• Fuzzing tools</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
))}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
@@ -79,24 +79,76 @@ export default function Home() {
|
|||||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
|
||||||
<h2 className="text-3xl font-bold mb-12">What Our Users Say</h2>
|
<h2 className="text-3xl font-bold mb-12">What Our Users Say</h2>
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
||||||
<div className="bg-white shadow-lg rounded-lg p-6">
|
{/* Testimonial 1 */}
|
||||||
|
<div className="bg-white shadow-lg rounded-lg p-6 text-center">
|
||||||
|
<div className="flex justify-center mb-4">
|
||||||
|
<img
|
||||||
|
className="w-16 h-16 rounded-full border-2 border-gray-300"
|
||||||
|
src="https://avatars.githubusercontent.com/u/118294498?v=4" // Example GitHub Profile Image
|
||||||
|
alt="akankshaadz"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<p className="text-gray-600 italic mb-4">
|
<p className="text-gray-600 italic mb-4">
|
||||||
"Snigdha OS has revolutionized how I approach cybersecurity tasks. The built-in tools are fantastic!"
|
"Snigdha OS has revolutionized how I approach cybersecurity tasks. The built-in tools are fantastic!"
|
||||||
</p>
|
</p>
|
||||||
<h4 className="font-semibold text-lg">- Alex J.</h4>
|
<h4 className="font-semibold text-lg">- akankshaadz</h4>
|
||||||
|
</div>
|
||||||
|
{/* Testimonial 2 */}
|
||||||
|
<div className="bg-white shadow-lg rounded-lg p-6 text-center">
|
||||||
|
<div className="flex justify-center mb-4">
|
||||||
|
<img
|
||||||
|
className="w-16 h-16 rounded-full border-2 border-gray-300"
|
||||||
|
src="https://avatars.githubusercontent.com/u/7654321?v=4" // Example GitHub Profile Image
|
||||||
|
alt="Prajwal K."
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div className="bg-white shadow-lg rounded-lg p-6">
|
|
||||||
<p className="text-gray-600 italic mb-4">
|
<p className="text-gray-600 italic mb-4">
|
||||||
"A game-changer for developers and penetration testers. Highly recommend!"
|
"A game-changer for developers and penetration testers. Highly recommend!"
|
||||||
</p>
|
</p>
|
||||||
<h4 className="font-semibold text-lg">- Priya K.</h4>
|
<h4 className="font-semibold text-lg">- Prajwal K.</h4>
|
||||||
|
</div>
|
||||||
|
{/* Testimonial 3 */}
|
||||||
|
<div className="bg-white shadow-lg rounded-lg p-6 text-center">
|
||||||
|
<div className="flex justify-center mb-4">
|
||||||
|
<img
|
||||||
|
className="w-16 h-16 rounded-full border-2 border-gray-300"
|
||||||
|
src="https://avatars.githubusercontent.com/u/1122334?v=4" // Example GitHub Profile Image
|
||||||
|
alt="Mark L."
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div className="bg-white shadow-lg rounded-lg p-6">
|
|
||||||
<p className="text-gray-600 italic mb-4">
|
<p className="text-gray-600 italic mb-4">
|
||||||
"Runs seamlessly on my older laptop. The lightweight design is truly impressive."
|
"Runs seamlessly on my older laptop. The lightweight design is truly impressive."
|
||||||
</p>
|
</p>
|
||||||
<h4 className="font-semibold text-lg">- Mark L.</h4>
|
<h4 className="font-semibold text-lg">- Mark L.</h4>
|
||||||
</div>
|
</div>
|
||||||
|
{/* Testimonial 4 */}
|
||||||
|
<div className="bg-white shadow-lg rounded-lg p-6 text-center">
|
||||||
|
<div className="flex justify-center mb-4">
|
||||||
|
<img
|
||||||
|
className="w-16 h-16 rounded-full border-2 border-gray-300"
|
||||||
|
src="https://avatars.githubusercontent.com/u/3412345?v=4" // Example GitHub Profile Image
|
||||||
|
alt="Samantha R."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<p className="text-gray-600 italic mb-4">
|
||||||
|
"I love how Snigdha OS is always up-to-date with the latest tools. It's incredibly easy to use."
|
||||||
|
</p>
|
||||||
|
<h4 className="font-semibold text-lg">- Samantha R.</h4>
|
||||||
|
</div>
|
||||||
|
{/* Testimonial 5 */}
|
||||||
|
<div className="bg-white shadow-lg rounded-lg p-6 text-center">
|
||||||
|
<div className="flex justify-center mb-4">
|
||||||
|
<img
|
||||||
|
className="w-16 h-16 rounded-full border-2 border-gray-300"
|
||||||
|
src="https://avatars.githubusercontent.com/u/7892345?v=4" // Example GitHub Profile Image
|
||||||
|
alt="John D."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<p className="text-gray-600 italic mb-4">
|
||||||
|
"Snigdha OS is an absolute powerhouse! It’s exactly what I needed for my penetration testing tasks."
|
||||||
|
</p>
|
||||||
|
<h4 className="font-semibold text-lg">- John D.</h4>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
Reference in New Issue
Block a user