| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>AI Trainer | PawSmart</title> |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet"> |
| <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <style> |
| @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); |
| body { |
| font-family: 'Poppins', sans-serif; |
| } |
| .chat-bubble { |
| border-radius: 1.25rem; |
| max-width: 80%; |
| } |
| .user-bubble { |
| background-color: #3B82F6; |
| color: white; |
| margin-left: auto; |
| border-bottom-right-radius: 0.25rem; |
| } |
| .ai-bubble { |
| background-color: #F3F4F6; |
| color: #111827; |
| margin-right: auto; |
| border-bottom-left-radius: 0.25rem; |
| } |
| .typing-indicator { |
| display: inline-flex; |
| align-items: center; |
| } |
| .typing-dot { |
| width: 8px; |
| height: 8px; |
| background-color: #9CA3AF; |
| border-radius: 50%; |
| margin: 0 2px; |
| animation: typingAnimation 1.4s infinite ease-in-out; |
| } |
| .typing-dot:nth-child(1) { |
| animation-delay: 0s; |
| } |
| .typing-dot:nth-child(2) { |
| animation-delay: 0.2s; |
| } |
| .typing-dot:nth-child(3) { |
| animation-delay: 0.4s; |
| } |
| @keyframes typingAnimation { |
| 0%, 60%, 100% { |
| transform: translateY(0); |
| } |
| 30% { |
| transform: translateY(-5px); |
| } |
| } |
| </style> |
| </head> |
| <body class="bg-gray-50"> |
| |
| <nav class="bg-white shadow-sm sticky top-0 z-50"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="flex justify-between h-16"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0 flex items-center"> |
| <i data-feather="heart" class="text-blue-500 h-8 w-8"></i> |
| <span class="ml-2 text-xl font-bold text-gray-900">PawSmart</span> |
| </div> |
| <div class="hidden sm:ml-6 sm:flex sm:space-x-8"> |
| <a href="index.html" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Home</a> |
| <a href="programs.html" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Programs</a> |
| <a href="#" class="border-blue-500 text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">AI Trainer</a> |
| <a href="community.html" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Community</a> |
| </div> |
| </div> |
| <div class="hidden sm:ml-6 sm:flex sm:items-center"> |
| <button class="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300">Sign In</button> |
| <button class="ml-4 bg-orange-500 hover:bg-orange-600 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300">Get Started</button> |
| </div> |
| <div class="-mr-2 flex items-center sm:hidden"> |
| <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-blue-500" aria-controls="mobile-menu" aria-expanded="false"> |
| <i data-feather="menu"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="sm:hidden hidden" id="mobile-menu"> |
| <div class="pt-2 pb-3 space-y-1"> |
| <a href="index.html" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Home</a> |
| <a href="programs.html" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Programs</a> |
| <a href="#" class="bg-blue-50 border-blue-500 text-blue-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">AI Trainer</a> |
| <a href="community.html" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Community</a> |
| <div class="mt-4 pt-4 border-t border-gray-200"> |
| <button class="w-full bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-md text-base font-medium transition duration-300">Sign In</button> |
| <button class="w-full mt-2 bg-orange-500 hover:bg-orange-600 text-white px-4 py-2 rounded-md text-base font-medium transition duration-300">Get Started</button> |
| </div> |
| </div> |
| </div> |
| </nav> |
|
|
| |
| <div class="bg-gradient-to-r from-blue-500 to-orange-400 text-white"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12"> |
| <div class="md:flex md:items-center md:justify-between"> |
| <div class="md:w-1/2" data-aos="fade-right"> |
| <h1 class="text-4xl font-bold mb-4">Your AI-Powered Dog Trainer</h1> |
| <p class="text-xl mb-6">Get personalized training plans tailored to your dog's unique needs, your schedule, and your training goals.</p> |
| <button class="bg-white text-blue-600 hover:bg-gray-100 px-6 py-3 rounded-lg font-medium shadow-md transition duration-300">Try It Now</button> |
| </div> |
| <div class="hidden md:block md:w-1/2" data-aos="fade-left"> |
| <img src="http://static.photos/technology/640x360/1" alt="AI technology" class="rounded-lg shadow-2xl"> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-16"> |
| <div class="text-center mb-16" data-aos="fade-up"> |
| <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">How It Works</h2> |
| <p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto">Three simple steps to your personalized training plan</p> |
| </div> |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
| <div class="bg-white p-8 rounded-xl shadow-md" data-aos="fade-up" data-aos-delay="100"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600 mb-4"> |
| <span class="text-xl font-bold">1</span> |
| </div> |
| <h3 class="text-lg font-medium text-gray-900 mb-2">Describe Your Dog</h3> |
| <p class="text-gray-500">Tell us about your dog's breed, age, behavior issues, and your training goals.</p> |
| </div> |
| <div class="bg-white p-8 rounded-xl shadow-md" data-aos="fade-up" data-aos-delay="200"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-orange-100 text-orange-600 mb-4"> |
| <span class="text-xl font-bold">2</span> |
| </div> |
| <h3 class="text-lg font-medium text-gray-900 mb-2">Get Your Plan</h3> |
| <p class="text-gray-500">Our AI analyzes your input and creates a step-by-step training plan.</p> |
| </div> |
| <div class="bg-white p-8 rounded-xl shadow-md" data-aos="fade-up" data-aos-delay="300"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-green-100 text-green-600 mb-4"> |
| <span class="text-xl font-bold">3</span> |
| </div> |
| <h3 class="text-lg font-medium text-gray-900 mb-2">Train & Track</h3> |
| <p class="text-gray-500">Follow the daily exercises, track progress, and adjust as needed.</p> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-gray-100 py-16"> |
| <div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="bg-white rounded-xl shadow-xl overflow-hidden" data-aos="fade-up"> |
| <div class="bg-gray-900 text-white px-6 py-4"> |
| <div class="flex items-center"> |
| <div class="h-3 w-3 rounded-full bg-red-500 mr-2"></div> |
| <div class="h-3 w-3 rounded-full bg-yellow-500 mr-2"></div> |
| <div class="h-3 w-3 rounded-full bg-green-500 mr-2"></div> |
| <div class="ml-4"> |
| <h3 class="text-sm font-medium">PawSmart AI Trainer</h3> |
| </div> |
| </div> |
| </div> |
| <div class="p-6"> |
| <div class="mb-4"> |
| <div class="ai-bubble chat-bubble p-4 mb-2"> |
| <p>Hi there! I'm your AI dog training assistant. To get started, tell me about your dog:</p> |
| <ul class="list-disc pl-5 mt-2 space-y-1"> |
| <li>Breed and age</li> |
| <li>Any specific behavior issues</li> |
| <li>Your training goals</li> |
| <li>How much time you can commit daily</li> |
| </ul> |
| </div> |
| <div class="user-bubble chat-bubble p-4 mb-2"> |
| <p>I have a 1-year-old Labrador who pulls on the leash during walks. I can train for about 20 minutes daily.</p> |
| </div> |
| <div class="ai-bubble chat-bubble p-4 mb-2"> |
| <div |
| </body> |
| </html> |