תעשה לי דף באתר בסיסי לא אתר שלם.... כמו תבנית כזאת שאני מתחיל ממנה כל דף באתר אבל שיהיה מרשים ומקצועי מאוד...
1a73fa4 verified | <html lang="en" class="scroll-smooth"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>PixelPerfect Launchpad</title> | |
| <link rel="stylesheet" href="style.css"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#6366f1', | |
| secondary: '#10b981', | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| </head> | |
| <body class="bg-gray-50 text-gray-800 font-sans antialiased"> | |
| <custom-navbar></custom-navbar> | |
| <main class="container mx-auto px-4 py-12"> | |
| <section class="max-w-4xl mx-auto text-center mb-20"> | |
| <h1 class="text-5xl font-bold text-primary mb-6">Welcome to Your <span class="text-secondary">Project</span></h1> | |
| <p class="text-xl text-gray-600 mb-8">This is your professional starting point. Customize and build something amazing!</p> | |
| <div class="flex justify-center gap-4"> | |
| <a href="#" class="bg-primary hover:bg-primary-600 text-white px-6 py-3 rounded-lg font-medium transition-all shadow-lg hover:shadow-xl">Get Started</a> | |
| <a href="#" class="border-2 border-primary text-primary hover:bg-primary hover:text-white px-6 py-3 rounded-lg font-medium transition-all">Learn More</a> | |
| </div> | |
| </section> | |
| <section class="grid md:grid-cols-3 gap-8 mb-20"> | |
| <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition-all"> | |
| <div class="w-14 h-14 bg-primary-100 rounded-full flex items-center justify-center mb-4"> | |
| <i data-feather="zap" class="text-primary w-6 h-6"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Lightning Fast</h3> | |
| <p class="text-gray-600">Optimized for performance with modern technologies and best practices.</p> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition-all"> | |
| <div class="w-14 h-14 bg-secondary-100 rounded-full flex items-center justify-center mb-4"> | |
| <i data-feather="layout" class="text-secondary w-6 h-6"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Responsive Design</h3> | |
| <p class="text-gray-600">Looks great on all devices from mobile to desktop with Tailwind's responsive utilities.</p> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition-all"> | |
| <div class="w-14 h-14 bg-primary-100 rounded-full flex items-center justify-center mb-4"> | |
| <i data-feather="code" class="text-primary w-6 h-6"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Clean Code</h3> | |
| <p class="text-gray-600">Well-structured, maintainable codebase with reusable components.</p> | |
| </div> | |
| </section> | |
| <section class="bg-gradient-to-r from-primary to-secondary p-0.5 rounded-xl mb-20"> | |
| <div class="bg-white rounded-xl p-8 md:p-12"> | |
| <div class="md:flex items-center gap-12"> | |
| <div class="md:w-1/2 mb-8 md:mb-0"> | |
| <h2 class="text-3xl font-bold mb-4">Ready to Launch?</h2> | |
| <p class="text-gray-600 mb-6">This template includes everything you need to start building your next project. Just add your content and customize the styles to match your brand.</p> | |
| <a href="#" class="inline-block bg-primary hover:bg-primary-600 text-white px-6 py-3 rounded-lg font-medium transition-all">Start Building</a> | |
| </div> | |
| <div class="md:w-1/2"> | |
| <div class="bg-gray-100 rounded-lg p-4"> | |
| <div class="bg-gray-200 h-64 rounded-md flex items-center justify-center"> | |
| <i data-feather="image" class="w-16 h-16 text-gray-400"></i> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| </main> | |
| <custom-footer></custom-footer> | |
| <script src="components/navbar.js"></script> | |
| <script src="components/footer.js"></script> | |
| <script src="script.js"></script> | |
| <script>feather.replace();</script> | |
| <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> | |
| </body> | |
| </html> |