mirror of
https://github.com/Snigdha-OS/snigdhaos-web-dev.git
synced 2025-09-07 13:25:12 +02:00
104 lines
4.7 KiB
TypeScript
104 lines
4.7 KiB
TypeScript
import React from 'react';
|
|
import { ArrowRight, Shield, Settings, Activity } from 'lucide-react';
|
|
import ImageSlider from '../components/home/ImageSlider';
|
|
import PenTestTools from '../components/home/PenTestTools';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div>
|
|
{/* Hero Section with Slider */}
|
|
<ImageSlider />
|
|
|
|
{/* Penetration Testing Tools Section */}
|
|
<PenTestTools />
|
|
|
|
{/* Features Section */}
|
|
<section className="py-20 bg-white">
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<h2 className="text-3xl font-bold text-center mb-12">Why Choose Snigdha OS?</h2>
|
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
|
<div className="text-center">
|
|
<Shield className="mx-auto mb-4 h-20 w-20 text-[#754ffe]" />
|
|
<h3 className="text-xl font-semibold mb-2">Enhanced Security</h3>
|
|
<p className="text-gray-600">Built with advanced encryption and secure protocols to safeguard your data.</p>
|
|
</div>
|
|
<div className="text-center">
|
|
<Settings className="mx-auto mb-4 h-20 w-20 text-[#754ffe]" />
|
|
<h3 className="text-xl font-semibold mb-2">Fully Customizable</h3>
|
|
<p className="text-gray-600">Tailor the OS to meet your specific needs and workflows.</p>
|
|
</div>
|
|
<div className="text-center">
|
|
<Activity className="mx-auto mb-4 h-20 w-20 text-[#754ffe]" />
|
|
<h3 className="text-xl font-semibold mb-2">Lightweight Design</h3>
|
|
<p className="text-gray-600">Optimized for performance on both modern and older hardware.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{/* Testimonials Section */}
|
|
<section className="py-20 bg-gray-50">
|
|
<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>
|
|
<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">
|
|
<p className="text-gray-600 italic mb-4">
|
|
"Snigdha OS has revolutionized how I approach cybersecurity tasks. The built-in tools are fantastic!"
|
|
</p>
|
|
<h4 className="font-semibold text-lg">- Alex J.</h4>
|
|
</div>
|
|
<div className="bg-white shadow-lg rounded-lg p-6">
|
|
<p className="text-gray-600 italic mb-4">
|
|
"A game-changer for developers and penetration testers. Highly recommend!"
|
|
</p>
|
|
<h4 className="font-semibold text-lg">- Priya K.</h4>
|
|
</div>
|
|
<div className="bg-white shadow-lg rounded-lg p-6">
|
|
<p className="text-gray-600 italic mb-4">
|
|
"Runs seamlessly on my older laptop. The lightweight design is truly impressive."
|
|
</p>
|
|
<h4 className="font-semibold text-lg">- Mark L.</h4>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{/* FAQ Section */}
|
|
<section className="py-20 bg-white">
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<h2 className="text-3xl font-bold text-center mb-12">Frequently Asked Questions</h2>
|
|
<div className="space-y-8">
|
|
<div>
|
|
<h3 className="text-xl font-semibold mb-2">Is Snigdha OS free to use?</h3>
|
|
<p className="text-gray-600">Yes, Snigdha OS is completely free and open-source.</p>
|
|
</div>
|
|
<div>
|
|
<h3 className="text-xl font-semibold mb-2">What hardware is supported?</h3>
|
|
<p className="text-gray-600">Snigdha OS is optimized to run on both modern and older hardware configurations.</p>
|
|
</div>
|
|
<div>
|
|
<h3 className="text-xl font-semibold mb-2">Can I customize Snigdha OS?</h3>
|
|
<p className="text-gray-600">Absolutely! Snigdha OS is highly customizable to meet your specific needs.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{/* CTA Section */}
|
|
<section className="bg-gray-100 py-20">
|
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
|
|
<h2 className="text-3xl font-bold mb-4">Ready to Experience Snigdha OS?</h2>
|
|
<p className="text-xl text-gray-600 mb-8">Join the next generation of secure computing</p>
|
|
<a
|
|
href="/download"
|
|
className="bg-[#754ffe] text-white px-8 py-3 rounded-lg font-semibold hover:bg-[#6344d5] transition-colors inline-flex items-center"
|
|
>
|
|
Download Snigdha OS
|
|
<ArrowRight className="ml-2 h-5 w-5" />
|
|
</a>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
);
|
|
}
|