import React from 'react'; import { Shield, Server, Lock, Zap, CheckCircle, Globe } from 'lucide-react'; const HostingSecurity: React.FC = () => { const benefits = [ { icon: , title: 'Enhanced Security', description: 'Full control over security configurations, custom firewalls, and regular security updates' }, { icon: , title: 'Better Performance', description: 'Optimized server configurations, custom caching, and dedicated resources for faster loading' }, { icon: , title: 'Data Privacy', description: 'Complete ownership of your data with no third-party access or data mining concerns' }, { icon: , title: 'Cost Effective', description: 'Lower long-term costs compared to managed hosting services with better resource allocation' }, { icon: , title: 'Custom Domains', description: 'Easy setup of custom domains, subdomains, and SSL certificates for professional presence' }, { icon: , title: 'Full Control', description: 'Complete administrative access to configure, customize, and scale your hosting environment' } ]; const techStack = [ 'Ubuntu Server 22.04 LTS', 'Nginx Web Server', 'Docker Containerization', 'SSL/TLS Encryption', 'Automated Backups', 'Monitoring & Alerts', 'Fail2ban Security', 'UFW Firewall' ]; return (

Self-Hosting & Security

Why I choose self-hosting for better control, security, and performance

{/* Main Info Panel */}

Why Self-Hosting Matters

Self-hosting provides unparalleled control over your digital infrastructure. By managing my own servers, I ensure optimal performance, enhanced security, and complete data ownership while reducing long-term costs.

This approach allows for custom configurations, better resource allocation, and the flexibility to scale applications according to specific needs without vendor lock-in or arbitrary limitations.

Server Status

Uptime 99.9%
Response Time < 200ms
SSL Grade A+
Security Score 95/100
All Systems Operational
{/* Benefits Grid */}
{benefits.map((benefit, index) => (
{benefit.icon}

{benefit.title}

{benefit.description}

))}
{/* Tech Stack */}

Technology Stack

{techStack.map((tech, index) => (
{tech}
))}

This robust technology stack ensures reliable, secure, and high-performance hosting for all projects while maintaining full control over the infrastructure.

); }; export default HostingSecurity;