|
1 | | -<h1>Benvenuti in CodeCorn Technology 🌽</h1> |
| 1 | +<!doctype html> |
| 2 | +<html lang="it" class="dark"> |
| 3 | + <head> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 6 | + <title>CodeCorn Technology | Hub</title> |
| 7 | + <script src="https://cdn.tailwindcss.com"></script> |
| 8 | + <script> |
| 9 | + tailwind.config = { |
| 10 | + darkMode: 'class', |
| 11 | + theme: { |
| 12 | + extend: { |
| 13 | + colors: { |
| 14 | + corn: '#ffd700', |
| 15 | + dark: '#0f172a', |
| 16 | + darker: '#020617', |
| 17 | + }, |
| 18 | + }, |
| 19 | + }, |
| 20 | + }; |
| 21 | + </script> |
| 22 | + <style> |
| 23 | + body { |
| 24 | + background-color: #020617; |
| 25 | + color: #f8fafc; |
| 26 | + font-family: |
| 27 | + system-ui, |
| 28 | + -apple-system, |
| 29 | + sans-serif; |
| 30 | + } |
| 31 | + .card-hover { |
| 32 | + transition: |
| 33 | + transform 0.2s ease, |
| 34 | + box-shadow 0.2s ease; |
| 35 | + border: 1px solid #1e293b; |
| 36 | + } |
| 37 | + .card-hover:hover { |
| 38 | + transform: translateY(-4px); |
| 39 | + box-shadow: 0 10px 40px -10px rgba(255, 215, 0, 0.15); |
| 40 | + border-color: #334155; |
| 41 | + } |
| 42 | + .bg-grid { |
| 43 | + background-size: 40px 40px; |
| 44 | + background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px); |
| 45 | + } |
| 46 | + </style> |
| 47 | + </head> |
| 48 | + <body class="min-h-screen flex flex-col relative"> |
| 49 | + <div class="absolute inset-0 bg-grid opacity-20 pointer-events-none z-0"></div> |
| 50 | + |
| 51 | + <header class="border-b border-slate-800 bg-dark/80 backdrop-blur-md sticky top-0 z-50"> |
| 52 | + <div class="max-w-6xl mx-auto px-6 py-4 flex justify-between items-center"> |
| 53 | + <div class="flex items-center gap-3"> |
| 54 | + <span class="text-3xl">🌽</span> |
| 55 | + <h1 class="text-xl font-bold tracking-tight"> |
| 56 | + CodeCorn |
| 57 | + <span class="text-corn">Technology</span> |
| 58 | + </h1> |
| 59 | + </div> |
| 60 | + <div class="flex gap-4"> |
| 61 | + <a href="https://github.com/CodeCornTech" target="_blank" class="text-slate-400 hover:text-white transition-colors" title="GitHub"> |
| 62 | + <svg viewBox="0 0 24 24" width="24" height="24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"><path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"></path></svg> |
| 63 | + </a> |
| 64 | + </div> |
| 65 | + </div> |
| 66 | + </header> |
| 67 | + |
| 68 | + <main class="flex-grow max-w-6xl mx-auto px-6 py-16 w-full relative z-10"> |
| 69 | + <div class="text-center mb-20"> |
| 70 | + <h2 class="text-5xl font-extrabold mb-6 tracking-tight"> |
| 71 | + Il nostro |
| 72 | + <span class="text-transparent bg-clip-text bg-gradient-to-r from-corn to-amber-500">Ecosistema</span> |
| 73 | + </h2> |
| 74 | + <p class="text-slate-400 text-lg max-w-2xl mx-auto leading-relaxed">Benvenuto nell'hub centrale. Qui trovi tutti i portali, i tool, le automazioni infrastrutturali e le risorse sviluppate da CodeCorn Technology.</p> |
| 75 | + </div> |
| 76 | + |
| 77 | + <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> |
| 78 | + <a href="/codecorn-userscripts/" class="bg-dark rounded-xl p-6 flex flex-col card-hover group cursor-pointer block"> |
| 79 | + <div class="w-12 h-12 bg-slate-800 rounded-lg flex items-center justify-center text-2xl mb-4 group-hover:scale-110 transition-transform">🐒</div> |
| 80 | + <h3 class="text-xl font-bold text-white mb-2">Userscripts Arsenal</h3> |
| 81 | + <p class="text-slate-400 text-sm mb-6 flex-grow">La repository degli script Tampermonkey. Include il God Mode, tool di networking e utilità per il debugging avanzato su browser.</p> |
| 82 | + <div class="flex items-center text-corn text-sm font-bold mt-auto"> |
| 83 | + Esplora l'Arsenale |
| 84 | + <span class="ml-2 group-hover:translate-x-1 transition-transform">→</span> |
| 85 | + </div> |
| 86 | + </a> |
| 87 | + |
| 88 | + <a href="#" class="bg-dark rounded-xl p-6 flex flex-col card-hover group cursor-pointer block relative overflow-hidden"> |
| 89 | + <div class="w-12 h-12 bg-slate-800 rounded-lg flex items-center justify-center text-2xl mb-4 group-hover:scale-110 transition-transform">🐳</div> |
| 90 | + <h3 class="text-xl font-bold text-white mb-2">DevOps & Stacks</h3> |
| 91 | + <p class="text-slate-400 text-sm mb-6 flex-grow">Configurazioni Docker Compose pronte all'uso, automazioni per cluster Proxmox VE e tuning avanzato per ZFS e Nginx.</p> |
| 92 | + <div class="flex items-center text-slate-500 text-sm font-bold mt-auto"> |
| 93 | + In arrivo |
| 94 | + <span class="ml-2">⏳</span> |
| 95 | + </div> |
| 96 | + <div class="absolute top-4 right-4 bg-slate-800 text-slate-400 text-xs px-2 py-1 rounded font-mono">WIP</div> |
| 97 | + </a> |
| 98 | + |
| 99 | + <a href="#" class="bg-dark rounded-xl p-6 flex flex-col card-hover group cursor-pointer block relative overflow-hidden"> |
| 100 | + <div class="w-12 h-12 bg-slate-800 rounded-lg flex items-center justify-center text-2xl mb-4 group-hover:scale-110 transition-transform">🛡️</div> |
| 101 | + <h3 class="text-xl font-bold text-white mb-2">WP Security Engine</h3> |
| 102 | + <p class="text-slate-400 text-sm mb-6 flex-grow">Libreria dei nostri MU-plugins custom per l'hardening di sistema, pulizia core e ottimizzazione delle REST API.</p> |
| 103 | + <div class="flex items-center text-slate-500 text-sm font-bold mt-auto"> |
| 104 | + In arrivo |
| 105 | + <span class="ml-2">⏳</span> |
| 106 | + </div> |
| 107 | + <div class="absolute top-4 right-4 bg-slate-800 text-slate-400 text-xs px-2 py-1 rounded font-mono">WIP</div> |
| 108 | + </a> |
| 109 | + |
| 110 | + <a href="#" class="bg-dark rounded-xl p-6 flex flex-col card-hover group cursor-pointer block relative overflow-hidden"> |
| 111 | + <div class="w-12 h-12 bg-slate-800 rounded-lg flex items-center justify-center text-2xl mb-4 group-hover:scale-110 transition-transform">⚛️</div> |
| 112 | + <h3 class="text-xl font-bold text-white mb-2">Frontend Components</h3> |
| 113 | + <p class="text-slate-400 text-sm mb-6 flex-grow">Librerie di componenti React e Framer Motion per interfacce complesse, background shader 3D e navigazioni responsive.</p> |
| 114 | + <div class="flex items-center text-slate-500 text-sm font-bold mt-auto"> |
| 115 | + In arrivo |
| 116 | + <span class="ml-2">⏳</span> |
| 117 | + </div> |
| 118 | + <div class="absolute top-4 right-4 bg-slate-800 text-slate-400 text-xs px-2 py-1 rounded font-mono">WIP</div> |
| 119 | + </a> |
| 120 | + </div> |
| 121 | + </main> |
| 122 | + |
| 123 | + <footer class="border-t border-slate-800 py-8 text-center text-slate-500 text-sm mt-auto relative z-10 bg-darker"> |
| 124 | + <p>© 2026 CodeCorn Technology. Built for the modern web.</p> |
| 125 | + </footer> |
| 126 | + </body> |
| 127 | +</html> |
0 commit comments