| <!DOCTYPE html> |
| <html lang="de"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Elementor Template</title> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <style> |
| .feature-card:hover { |
| transform: translateY(-5px); |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); |
| } |
| </style> |
| </head> |
| <body class="font-sans antialiased text-gray-800"> |
| <section class="bg-gradient-to-r from-blue-600 to-blue-800 text-white py-20"> |
| <div class="container mx-auto px-6 text-center"> |
| <h1 class="text-4xl md:text-5xl font-bold mb-6">[[ÜBERSCHRIFT_EINFÜGEN]]</h1> |
| <p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">[[UNTERÜBERSCHRIFT_EINFÜGEN]]</p> |
| <a href="#" class="bg-white text-blue-600 font-bold px-8 py-4 rounded-full hover:bg-gray-100 transition inline-block">[[CTA_TEXT]]</a> |
| </div> |
| </section> |
| <section class="py-16 bg-white"> |
| <div class="container mx-auto px-6"> |
| <h2 class="text-3xl font-bold text-center mb-12">[[FEATURES_ÜBERSCHRIFT]]</h2> |
| <div class="grid md:grid-cols-3 gap-8"> |
| <div class="feature-card bg-white p-8 rounded-xl shadow-lg border border-gray-100 transition duration-300"> |
| <div class="text-blue-500 mb-4"> |
| <i data-feather="[[ICON_1]]" class="w-10 h-10"></i> |
| </div> |
| <h3 class="text-xl font-bold mb-3">[[FEATURE_1_TITEL]]</h3> |
| <p class="text-gray-600">[[FEATURE_1_BESCHREIBUNG]]</p> |
| </div> |
| <div class="feature-card bg-white p-8 rounded-xl shadow-lg border border-gray-100 transition duration-300"> |
| <div class="text-blue-500 mb-4"> |
| <i data-feather="[[ICON_2]]" class="w-10 h-10"></i> |
| </div> |
| <h3 class="text-xl font-bold mb-3">[[FEATURE_2_TITEL]]</h3> |
| <p class="text-gray-600">[[FEATURE_2_BESCHREIBUNG]]</p> |
| </div> |
| <div class="feature-card bg-white p-8 rounded-xl shadow-lg border border-gray-100 transition duration-300"> |
| <div class="text-blue-500 mb-4"> |
| <i data-feather="[[ICON_3]]" class="w-10 h-10"></i> |
| </div> |
| <h3 class="text-xl font-bold mb-3">[[FEATURE_3_TITEL]]</h3> |
| <p class="text-gray-600">[[FEATURE_3_BESCHREIBUNG]]</p> |
| </div> |
| </div> |
| </div> |
| </section> |
| <section class="py-16 bg-gray-50"> |
| <div class="container mx-auto px-6"> |
| <div class="flex flex-col md:flex-row items-center gap-12"> |
| <div class="md:w-1/2"> |
| <h2 class="text-3xl font-bold mb-6">[[INHALT_TITEL]]</h2> |
| <p class="text-gray-600 mb-6">[[INHALT_TEXT_1]]</p> |
| <p class="text-gray-600 mb-6">[[INHALT_TEXT_2]]</p> |
| <a href="#" class="bg-blue-600 text-white font-bold px-6 py-3 rounded-lg hover:bg-blue-700 transition inline-block">[[INHALT_CTA]]</a> |
| </div> |
| <div class="md:w-1/2"> |
| <img src="http://static.photos/technology/640x360" alt="[[BILD_ALT]]" class="rounded-lg shadow-lg w-full h-auto"> |
| </div> |
| </div> |
| </div> |
| </section> |
| <section class="py-16 bg-white"> |
| <div class="container mx-auto px-6"> |
| <h2 class="text-3xl font-bold text-center mb-12">[[TESTIMONIALS_TITEL]]</h2> |
| <div class="grid md:grid-cols-2 gap-8"> |
| <div class="bg-gray-50 p-8 rounded-lg"> |
| <div class="flex items-center mb-4"> |
| <img src="http://static.photos/people/200x200" alt="[[KUNDE_1]]" class="w-12 h-12 rounded-full mr-4"> |
| <div> |
| <h4 class="font-bold">[[KUNDE_1]]</h4> |
| <p class="text-gray-500 text-sm">[[POSITION_1]]</p> |
| </div> |
| </div> |
| <p class="text-gray-600 italic">"[[TESTIMONIAL_TEXT_1]]"</p> |
| </div> |
| <div class="bg-gray-50 p-8 rounded-lg"> |
| <div class="flex items-center mb-4"> |
| <img src="http://static.photos/people/200x200/2" alt="[[KUNDE_2]]" class="w-12 h-12 rounded-full mr-4"> |
| <div> |
| <h4 class="font-bold">[[KUNDE_2]]</h4> |
| <p class="text-gray-500 text-sm">[[POSITION_2]]</p> |
| </div> |
| </div> |
| <p class="text-gray-600 italic">"[[TESTIMONIAL_TEXT_2]]"</p> |
| </div> |
| </div> |
| </div> |
| </section> |
| <section class="py-16 bg-blue-600 text-white"> |
| <div class="container mx-auto px-6 text-center"> |
| <div class="max-w-2xl mx-auto"> |
| <h2 class="text-3xl font-bold mb-6">[[CTA_TITEL]]</h2> |
| <p class="text-xl mb-8">[[CTA_TEXT]]</p> |
| <a href="#" class="bg-white text-blue-600 font-bold px-8 py-4 rounded-full hover:bg-gray-100 transition inline-block">[[CTA_BUTTON_TEXT]]</a> |
| </div> |
| </div> |
| </section> |
| <script> |
| feather.replace(); |
| </script> |
| </body> |
| </html> |
|
|