'use client'; import Link from 'next/link'; import Navbar from '@/components/Navbar'; import Footer from '@/components/Footer'; import FeatureCard from '@/components/FeatureCard'; interface FeatureItem { icon: string; label: string; premium?: boolean; } interface FeatureSection { id: string; title: string; description: string; icon: string; features: FeatureItem[]; } export default function FeaturesPage() { const features: FeatureSection[] = [ { id: 'deployment', title: 'App Deployment', description: 'Deploy your favorite applications instantly from our library of 50+ pre-configured Docker templates. No manual configuration neededโ€”just click, deploy, and go live.', icon: '๐Ÿš€', features: [ { icon: 'โšก', label: 'One-click deployment' }, { icon: '๐Ÿ“ฆ', label: '50+ app templates' }, { icon: 'โš™๏ธ', label: 'Auto-configuration' }, ], }, { id: 'ssl-security', title: 'SSL & Security', description: 'Enterprise-grade security built in. Automatic SSL certificates, TOTP 2FA, encrypted credentials, and comprehensive audit logs to track every action.', icon: '๐Ÿ”’', features: [ { icon: '๐Ÿ”', label: 'Automatic SSL certificates' }, { icon: '๐Ÿ“ฑ', label: 'TOTP 2FA authentication' }, { icon: '๐Ÿ”‘', label: 'Encrypted credentials' }, { icon: '๐Ÿ“', label: 'Audit logs' }, ], }, { id: 'dns', title: 'DNS Management', description: 'Manage all your app subdomains from one dashboard. Automatic DNS record creation with Technitium DNS integration makes domain management effortless.', icon: '๐ŸŒ', features: [ { icon: 'โœจ', label: 'Automatic DNS records' }, { icon: '๐Ÿ”—', label: 'Technitium integration' }, { icon: '๐Ÿ“‹', label: 'Subdomain management' }, { icon: '๐ŸŽฏ', label: 'Zero DNS config' }, ], }, { id: 'monitoring', title: 'Monitoring & Health', description: 'Real-time visibility into your infrastructure. Monitor container health, response times, and resource usage with detailed metrics and alerts.', icon: '๐Ÿ“Š', features: [ { icon: '๐ŸŸข', label: 'Real-time status' }, { icon: 'โฑ๏ธ', label: 'Response time tracking' }, { icon: '๐Ÿ’พ', label: 'Resource monitoring' }, { icon: '๐Ÿ“ˆ', label: 'Performance metrics' }, ], }, { id: 'docker', title: 'Docker Management', description: 'Control your entire Docker environment visually. View, manage, and scale containers, access logs, and perform updates without touching the command line.', icon: '๐Ÿณ', features: [ { icon: '๐ŸŽฎ', label: 'Container control' }, { icon: '๐Ÿ“œ', label: 'Live logs access' }, { icon: '๐Ÿ”„', label: 'Auto-updates' }, { icon: '๐Ÿ“Š', label: 'Resource monitoring' }, ], }, { id: 'premium', title: 'Premium Features', description: 'Advanced features for power users and production deployments. SSO integration, multi-container recipes, and Docker Swarm orchestration.', icon: 'โญ', features: [ { icon: '๐Ÿ”‘', label: 'Auto-Login SSO', premium: true }, { icon: '๐Ÿ“š', label: 'Recipes (stack deployment)', premium: true }, { icon: '๐Ÿš€', label: 'Docker Swarm orchestration', premium: true }, { icon: '๐Ÿš€', label: 'Priority support', premium: true }, ], }, ]; return (
{/* Hero Section */}

Powerful Features Built In

Everything you need to manage Docker applications professionally. From deployment to monitoring, SSL to securityโ€”it's all included.

{/* Feature Sections */}
{features.map((feature, idx) => (
{/* Content Side */}
{feature.icon}

{feature.title}

{feature.description}

{/* Feature Grid */}
{feature.features.map((item, itemIdx) => (
{item.icon} {item.label} {item.premium && ( Premium )}
))}
{/* Visual Side */}
{feature.features.slice(0, 3).map((item, itemIdx) => (
{item.label}
))}
{feature.features.length} features included
))}
{/* Feature Comparison Grid */}

What's Included in Free

Start with the free tier and upgrade anytime when you need advanced features.

{/* Feature Grid */}
{/* Premium Section */}
Premium Features

Level Up With Premium

Get advanced features designed for power users and production deployments. Auto-Login SSO, stack recipes, Docker Swarm orchestration, and priority support.

๐Ÿ”‘

Auto-Login SSO

Deploy apps with automatic single sign-on integration.

๐Ÿ“š

Recipes

Deploy multi-container stacks with one click.

๐Ÿš€

Docker Swarm

Orchestrate multi-node clusters effortlessly.

โšก

Priority Support

Get faster responses from our support team.

Explore Premium Plans
{/* FAQ Section */}

Questions About Features?

Check our documentation or contact support.

Read Documentation Contact Support
); }