1+ <!-- <div class="min-h-screen flex items-center justify-center bg-cover bg-center bg-no-repeat" style="background-image: url('/public/assets/warvilphp.jpg');"> -->
2+ <div class="min-h-screen bg-gradient-to-br from-gray-900 via-purple-900 to-gray-900 flex items-center justify-center">
3+ <div class="mt-[4em] w-full max-w-6xl bg-gray-900 bg-opacity-80 rounded-xl shadow-2xl overflow-hidden">
4+ <div class="p-8 md:p-12">
5+ <!-- Header -->
6+ <div class="text-center mb-12">
7+ <h1 class="text-purple-400 text-6xl md:text-7xl lg:text-8xl font-bold mb-4">WarvilPHP</h1>
8+ <p class="text-gray-300 text-2xl md:text-3xl font-light">
9+ The elegance of frameworks, the freedom of pure PHP.
10+ </p>
11+ </div>
12+
13+ <!-- Feature Grid -->
14+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mb-12">
15+ <div class="bg-gray-800 bg-opacity-50 p-6 rounded-lg hover:bg-purple-900 hover:bg-opacity-30 transition-all duration-300">
16+ <div class="text-purple-400 text-4xl mb-4">🏗️</div>
17+ <h3 class="text-white text-xl font-semibold mb-2">MVC Architecture</h3>
18+ <p class="text-gray-300">Clean separation of Model, View and Controller for organized code structure.</p>
19+ </div>
20+ <div class="bg-gray-800 bg-opacity-50 p-6 rounded-lg hover:bg-purple-900 hover:bg-opacity-30 transition-all duration-300">
21+ <div class="text-purple-400 text-4xl mb-4">🌐</div>
22+ <h3 class="text-white text-xl font-semibold mb-2">Simple Routing</h3>
23+ <p class="text-gray-300">Intuitive routing system for both web pages and API endpoints.</p>
24+ </div>
25+ <div class="bg-gray-800 bg-opacity-50 p-6 rounded-lg hover:bg-purple-900 hover:bg-opacity-30 transition-all duration-300">
26+ <div class="text-purple-400 text-4xl mb-4">🔧</div>
27+ <h3 class="text-white text-xl font-semibold mb-2">CLI Tools</h3>
28+ <p class="text-gray-300">Built-in command line tools for scaffolding your application.</p>
29+ </div>
30+ <div class="bg-gray-800 bg-opacity-50 p-6 rounded-lg hover:bg-purple-900 hover:bg-opacity-30 transition-all duration-300">
31+ <div class="text-purple-400 text-4xl mb-4">🧩</div>
32+ <h3 class="text-white text-xl font-semibold mb-2">Components</h3>
33+ <p class="text-gray-300">Reusable view components for consistent interfaces.</p>
34+ </div>
35+ <div class="bg-gray-800 bg-opacity-50 p-6 rounded-lg hover:bg-purple-900 hover:bg-opacity-30 transition-all duration-300">
36+ <div class="text-purple-400 text-4xl mb-4">🛡️</div>
37+ <h3 class="text-white text-xl font-semibold mb-2">Middleware</h3>
38+ <p class="text-gray-300">Request filtering for authentication, validation, and more.</p>
39+ </div>
40+ <div class="bg-gray-800 bg-opacity-50 p-6 rounded-lg hover:bg-purple-900 hover:bg-opacity-30 transition-all duration-300">
41+ <div class="text-purple-400 text-4xl mb-4">🔌</div>
42+ <h3 class="text-white text-xl font-semibold mb-2">API Development</h3>
43+ <p class="text-gray-300">Tools for building robust RESTful APIs quickly.</p>
44+ </div>
45+ </div>
46+
47+ <!-- Get Started -->
48+ <div class="bg-gray-800 bg-opacity-50 p-8 rounded-lg mb-8">
49+ <h2 class="text-white text-2xl font-semibold mb-4">Get Started</h2>
50+ <div class="bg-gray-900 p-4 rounded-md overflow-x-auto mb-4">
51+ <pre class="text-green-400">$ php warvil make:controller UserController</pre>
52+ </div>
53+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
54+ <a href="/docs" class="block bg-purple-700 hover:bg-purple-600 text-white text-center py-3 px-4 rounded-md transition-colors">Documentation</a>
55+ <a href="https://github.com/wardvisual/warvilphp" target="_blank" class="block bg-gray-700 hover:bg-gray-600 text-white text-center py-3 px-4 rounded-md transition-colors">GitHub</a>
56+ <a href="/examples" class="block bg-gray-700 hover:bg-gray-600 text-white text-center py-3 px-4 rounded-md transition-colors">Examples</a>
57+ </div>
58+ </div>
59+
60+ <!-- Footer -->
61+ <div class="text-center text-gray-400">
62+ <p>WarvilPHP v<?= WARVIL_VERSION ?? '1.0.0 ' ?> • Made with ❤️ by <a href="https://github.com/wardvisual" class="text-purple-400 hover:text-purple-300">WardVisual</a></p>
63+ <p class="text-sm mt-2">Under active development. While we strive for stability, use in production is at your own risk.</p>
64+ </div>
65+ </div>
66+ </div>
67+ </div>
0 commit comments