|
|
| |
| <div class="fixed bottom-8 right-8 z-50"> |
| <button class="p-4 bg-gradient-to-br from-purple-600 to-blue-600 text-white rounded-full shadow-xl hover:shadow-2xl transition-all duration-300 hover:scale-110"> |
| <i class="fas fa-comment-dots text-xl"></i> |
| </button> |
| </div> |
|
|
| |
| <div class="fixed -z-10 inset-0 overflow-hidden"> |
| <div class="absolute top-1/4 left-1/4 w-64 h-64 rounded-full bg-purple-500/10 blur-3xl animate-pulse"></div> |
| <div class="absolute top-1/3 right-1/3 w-96 h-96 rounded-full bg-blue-500/10 blur-3xl animate-pulse animation-delay-2000"></div> |
| <div class="absolute bottom-1/4 right-1/4 w-80 h-80 rounded-full bg-indigo-500/10 blur-3xl animate-pulse animation-delay-4000"></div> |
| </div> |
|
|
| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>AI Catering Assistant | Never Miss a Booking Again</title> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
| <style> |
| :root { |
| --primary: #8b5cf6; |
| --primary-light: #a78bfa; |
| --primary-dark: #7c3aed; |
| --secondary: #10b981; |
| --dark: #f8fafc; |
| --light: #0f172a; |
| --hyper: #38bdf8; |
| } |
| |
| body { |
| background-color: var(--dark); |
| color: #1e293b; |
| background-image: |
| radial-gradient(at 20% 30%, rgba(139, 92, 246, 0.15) 0px, transparent 50%), |
| radial-gradient(at 80% 70%, rgba(56, 189, 248, 0.15) 0px, transparent 50%); |
| } |
| |
| .gradient-bg { |
| background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e1b4b 100%); |
| } |
| .hero-clip-path { |
| clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); |
| } |
| |
| .text-hyper { |
| color: var(--hyper); |
| } |
| |
| @keyframes pulse { |
| 0%, 100% { opacity: 0.8; } |
| 50% { opacity: 0.3; } |
| } |
| |
| .animate-pulse { |
| animation: pulse 6s cubic-bezier(0.4, 0, 0.6, 1) infinite; |
| } |
| |
| .animation-delay-2000 { |
| animation-delay: 2s; |
| } |
| |
| .animation-delay-4000 { |
| animation-delay: 4s; |
| } |
| .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); |
| } |
| .testimonial-slide { |
| opacity: 0; |
| transition: opacity 0.5s ease; |
| } |
| .testimonial-slide.active { |
| opacity: 1; |
| } |
| .floating { |
| animation: floating 6s ease-in-out infinite; |
| } |
| @keyframes floating { |
| 0% { transform: translateY(0px); } |
| 50% { transform: translateY(-15px); } |
| 100% { transform: translateY(0px); } |
| } |
| </style> |
| </head> |
| <body class="font-sans antialiased text-gray-800"> |
| |
| <nav class="bg-gradient-to-r from-gray-800 to-gray-900 backdrop-blur-lg fixed w-full z-10 border-b border-gray-300/50 text-gray-100"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="flex justify-between h-16 items-center"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0 flex items-center"> |
| <span class="text-xl font-bold text-white">AI Solutions</span> |
| </div> |
| </div> |
| <div class="hidden md:ml-6 md:flex md:items-center md:space-x-6"> |
| <a href="#features" class="text-white hover:text-blue-400 px-3 py-2 text-sm font-medium transition-colors">Solutions</a> |
| <a href="#technology" class="text-white hover:text-blue-400 px-3 py-2 text-sm font-medium transition-colors">Technology</a> |
| <a href="#industries" class="text-white hover:text-blue-400 px-3 py-2 text-sm font-medium transition-colors">Industries</a> |
| <a href="#resources" class="text-white hover:text-blue-400 px-3 py-2 text-sm font-medium transition-colors">Resources</a> |
| <a href="#contact" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium transition-colors">Contact Us</a> |
| </div> |
| <div class="-mr-2 flex items-center md:hidden"> |
| <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-white hover:text-white hover:bg-gray-700 focus:outline-none" aria-controls="mobile-menu" aria-expanded="false" id="mobile-menu-button"> |
| <span class="sr-only">Open main menu</span> |
| <i class="fas fa-bars"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="hidden md:hidden bg-white shadow-lg" id="mobile-menu"> |
| <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> |
| <a href="#features" class="text-gray-900 hover:text-blue-600 block px-3 py-2 text-base font-medium">Features</a> |
| <a href="#how-it-works" class="text-gray-900 hover:text-blue-600 block px-3 py-2 text-base font-medium">How It Works</a> |
| <a href="#pricing" class="text-gray-900 hover:text-blue-600 block px-3 py-2 text-base font-medium">Pricing</a> |
| <a href="#testimonials" class="text-gray-900 hover:text-blue-600 block px-3 py-2 text-base font-medium">Testimonials</a> |
| <a href="#demo" class="bg-blue-600 hover:bg-blue-700 text-white block px-3 py-2 rounded-md text-base font-medium">Get Demo</a> |
| </div> |
| </div> |
| </nav> |
|
|
| |
| <section class="bg-gradient-to-br from-gray-800 to-gray-900 pt-24 pb-20 md:pt-32 md:pb-28 text-white"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="lg:grid lg:grid-cols-2 lg:gap-12 items-center"> |
| <div class="mt-10 sm:mt-12 lg:mt-0"> |
| <h1 class="text-4xl md:text-6xl font-bold tracking-tight text-white"> |
| <span class="text-transparent bg-clip-text bg-gradient-to-r from-purple-200 to-blue-200">Advanced</span> <span class="text-blue-300">AI</span> Solutions for <span class="text-transparent bg-clip-text bg-gradient-to-r from-blue-200 to-green-200">Modern Businesses</span> |
| </h1> |
| <p class="mt-6 text-xl text-gray-300 leading-relaxed"> |
| Harness <span class="text-hyper font-medium">cutting-edge AI technology</span> to <span class="text-purple-300 font-medium">streamline operations</span>, enhance <span class="text-blue-300 font-medium">decision-making</span>, and drive <span class="text-green-300 font-medium">growth</span>. |
| </p> |
| <div class="mt-8 flex flex-col sm:flex-row gap-4"> |
| <a href="#demo" class="inline-flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-gradient-to-r from-blue-600 to-purple-600 hover:from-blue-700 hover:to-purple-700 shadow-lg transition-all duration-300 md:py-4 md:text-lg md:px-10"> |
| Get a Demo <i class="fas fa-arrow-right ml-2"></i> |
| </a> |
| <a href="#how-it-works" class="inline-flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-gray-800 hover:bg-gray-700 shadow-lg transition-all duration-300 md:py-4 md:text-lg md:px-10"> |
| <i class="fas fa-play-circle mr-2"></i> How It Works |
| </a> |
| </div> |
| </div> |
| <div class="mt-12 sm:mt-16 lg:mt-0 relative"> |
| <div class="relative w-full rounded-xl shadow-xl overflow-hidden floating"> |
| <img class="w-full" src="https://images.unsplash.com/photo-1555244162-803834f70033?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Catering service with AI assistant"> |
| <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-6"> |
| <div class="bg-white rounded-lg p-4 shadow-lg max-w-xs"> |
| <div class="flex items-start"> |
| <div class="flex-shrink-0"> |
| <i class="fas fa-robot text-blue-500 text-xl"></i> |
| </div> |
| <div class="ml-3"> |
| <p class="text-sm font-medium text-gray-900">CaterAI Assistant</p> |
| <p class="text-sm text-gray-600">I can help book your event! What date are you looking for?</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="bg-gray-50 py-12"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center"> |
| <div> |
| <p class="text-3xl font-bold text-blue-600">24/7</p> |
| <p class="text-gray-600 mt-2">Availability</p> |
| </div> |
| <div> |
| <p class="text-3xl font-bold text-blue-600">98%</p> |
| <p class="text-gray-600 mt-2">Response Rate</p> |
| </div> |
| <div> |
| <p class="text-3xl font-bold text-blue-600">3x</p> |
| <p class="text-gray-600 mt-2">More Bookings</p> |
| </div> |
| <div> |
| <p class="text-3xl font-bold text-blue-600">10h</p> |
| <p class="text-gray-600 mt-2">Saved Weekly</p> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="features" class="py-20 bg-white"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center"> |
| <h2 class="text-3xl font-bold text-gray-900 sm:text-4xl"> |
| <span class="text-transparent bg-clip-text bg-gradient-to-r from-blue-600 to-green-500">AI-Powered Solutions</span> for Your Business |
| </h2> |
| <p class="mt-4 max-w-2xl mx-auto text-xl text-gray-600 sm:mt-5"> |
| Transform your operations with our cutting-edge artificial intelligence technologies. |
| </p> |
| </div> |
|
|
| <div class="mt-16 space-y-16"> |
| |
| <div class="feature-card transition-all duration-300 ease-in-out bg-gradient-to-br from-gray-100 to-white hover:from-gray-100 hover:to-gray-50 rounded-xl shadow-xl overflow-hidden border border-gray-200/50 text-gray-800"> |
| <div class="md:flex"> |
| <div class="md:flex-shrink-0 md:w-1/3 bg-blue-50 flex items-center justify-center p-8"> |
| <div class="text-center"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600 mx-auto"> |
| <i class="fas fa-inbox text-xl"></i> |
| </div> |
| <h3 class="mt-4 text-xl font-medium text-gray-900">Overflowed Inboxes</h3> |
| <p class="mt-2 text-red-500 font-medium">Problem</p> |
| </div> |
| </div> |
| <div class="p-8 md:w-2/3"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0 bg-green-100 rounded-md p-3"> |
| <i class="fas fa-check-circle text-green-600 text-xl"></i> |
| </div> |
| <div class="ml-4"> |
| <h4 class="text-lg font-medium text-gray-900">AI Solution</h4> |
| <p class="mt-1 text-gray-600">Handles inquiries 24/7, qualifies leads, responds instantly, and routes only the important ones to your team.</p> |
| </div> |
| </div> |
| <div class="mt-6"> |
| <div class="flex items-start"> |
| <div class="flex-shrink-0"> |
| <i class="fas fa-check text-green-500"></i> |
| </div> |
| <div class="ml-3"> |
| <p class="text-gray-700">Automatically responds to all inquiries within seconds</p> |
| </div> |
| </div> |
| <div class="flex items-start mt-3"> |
| <div class="flex-shrink-0"> |
| <i class="fas fa-check text-green-500"></i> |
| </div> |
| <div class="ml-3"> |
| <p class="text-gray-700">Asks qualifying questions to filter serious clients</p> |
| </div> |
| </div> |
| <div class="flex items-start mt-3"> |
| <div class="flex-shrink-0"> |
| <i class="fas fa-check text-green-500"></i> |
| </div> |
| <div class="ml-3"> |
| <p class="text-gray-700">Provides you with detailed lead information</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="feature-card transition-all duration-300 ease-in-out bg-white rounded-xl shadow-md overflow-hidden"> |
| <div class="md:flex flex-row-reverse"> |
| <div class="md:flex-shrink-0 md:w-1/3 bg-blue-50 flex items-center justify-center p-8"> |
| <div class="text-center"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600 mx-auto"> |
| <i class="fas fa-calendar-alt text-xl"></i> |
| </div> |
| <h3 class="mt-4 text-xl font-medium text-gray-900">Scheduling Chaos</h3> |
| <p class="mt-2 text-red-500 font-medium">Problem</p> |
| </div> |
| </div> |
| <div class="p-8 md:w-2/3"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0 bg-green-100 rounded-md p-3"> |
| <i class="fas fa-check-circle text-green-600 text-xl"></i> |
| </div> |
| <div class="ml-4"> |
| <h4 class="text-lg font-medium text-gray-900">AI Solution</h4> |
| <p class="mt-1 text-gray-600">Books appointments automatically—one-time or recurring, manages reschedules and cancellations, even handles corporate booking flows with confidence.</p> |
| </div> |
| </div> |
| <div class="mt-6"> |
| <div class="flex items-start"> |
| <div class="flex-shrink-0"> |
| <i class="fas fa-check text-green-500"></i> |
| </div> |
| <div class="ml-3"> |
| <p class="text-gray-700">Syncs with your calendar to show real-time availability</p> |
| </div> |
| </div> |
| <div class="flex items-start mt-3"> |
| <div class="flex-shrink-0"> |
| <i class="fas fa-check text-green-500"></i> |
| </div> |
| <div class="ml-3"> |
| <p class="text-gray-700">Handles complex booking scenarios automatically</p> |
| </div> |
| </div> |
| <div class="flex items-start mt-3"> |
| <div class="flex-shrink-0"> |
| <i class="fas fa-check text-green-500"></i> |
| </div> |
| <div class="ml-3"> |
| <p class="text-gray-700">Sends reminders and follow-ups to reduce no-shows</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="feature-card transition-all duration-300 ease-in-out bg-white rounded-xl shadow-md overflow-hidden"> |
| <div class="md:flex"> |
| <div class="md:flex-shrink-0 md:w-1/3 bg-blue-50 flex items-center justify-center p-8"> |
| <div class="text-center"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600 mx-auto"> |
| <i class="fas fa-file-invoice-dollar text-xl"></i> |
| </div> |
| <h3 class="mt-4 text-xl font-medium text-gray-900">Slow Quotes</h3> |
| <p class="mt-2 text-red-500 font-medium">Problem</p> |
| </div> |
| </div> |
| <div class="p-8 md:w-2/3"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0 bg-green-100 rounded-md p-3"> |
| <i class="fas fa-check-circle text-green-600 text-xl"></i> |
| </div> |
| <div class="ml-4"> |
| <h4 class="text-lg font-medium text-gray-900">AI Solution</h4> |
| <p class="mt-1 text-gray-600">Delivers accurate instant estimates based on your menu, headcount, and service level—leading to higher conversions.</p> |
| </div> |
| </div> |
| <div class="mt-6"> |
| <div class="flex items-start"> |
| <div class="flex-shrink-0"> |
| <i class="fas fa-check text-green-500"></i> |
| </div> |
| <div class="ml-3"> |
| <p class="text-gray-700">Generates quotes in seconds, not hours</p> |
| </div> |
| </div> |
| <div class="flex items-start mt-3"> |
| <div class="flex-shrink-0"> |
| <i class="fas fa-check text-green-500"></i> |
| </div> |
| <div class="ml-3"> |
| <p class="text-gray-700">Customizes pricing based on your menu and services</p> |
| </div> |
| </div> |
| <div class="flex items-start mt-3"> |
| <div class="flex-shrink-0"> |
| <i class="fas fa-check text-green-500"></i> |
| </div> |
| <div class="ml-3"> |
| <p class="text-gray-700">Follows up automatically to close more deals</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="feature-card transition-all duration-300 ease-in-out bg-white rounded-xl shadow-md overflow-hidden"> |
| <div class="md:flex flex-row-reverse"> |
| <div class="md:flex-shrink-0 md:w-1/3 bg-blue-50 flex items-center justify-center p-8"> |
| <div class="text-center"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600 mx-auto"> |
| <i class="fas fa-ghost text-xl"></i> |
| </div> |
| <h3 class="mt-4 text-xl font-medium text-gray-900">Ghosted Clients</h3> |
| <p class="mt-2 text-red-500 font-medium">Problem</p> |
| </div> |
| </div> |
| <div class="p-8 md:w-2/3"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0 bg-green-100 rounded-md p-3"> |
| <i class="fas fa-check-circle text-green-600 text-xl"></i> |
| </div> |
| <div class="ml-4"> |
| <h4 class="text-lg font-medium text-gray-900">AI Solution</h4> |
| <p class="mt-1 text-gray-600">Follows up with appointment reminders, upsells add-ons (like desserts or servers), and asks for reviews post-event.</p> |
| </div> |
| </div> |
| <div class="mt-6"> |
| <div class="flex items-start"> |
| <div class="flex-shrink-0"> |
| <i class="fas fa-check text-green-500"></i> |
| </div> |
| <div class="ml-3"> |
| <p class="text-gray-700">Automated follow-up sequences to keep clients engaged</p> |
| </div> |
| </div> |
| <div class="flex items-start mt-3"> |
| <div class="flex-shrink-0"> |
| <i class="fas fa-check text-green-500"></i> |
| </div> |
| <div class="ml-3"> |
| <p class="text-gray-700">Strategic upsell opportunities at the right moments</p> |
| </div> |
| </div> |
| <div class="flex items-start mt-3"> |
| <div class="flex-shrink-0"> |
| <i class="fas fa-check text-green-500"></i> |
| </div> |
| <div class="ml-3"> |
| <p class="text-gray-700">Review collection to build your reputation</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="feature-card transition-all duration-300 ease-in-out bg-white rounded-xl shadow-md overflow-hidden"> |
| <div class="md:flex"> |
| <div class="md:flex-shrink-0 md:w-1/3 bg-blue-50 flex items-center justify-center p-8"> |
| <div class="text-center"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600 mx-auto"> |
| <i class="fas fa-headset text-xl"></i> |
| </div> |
| <h3 class="mt-4 text-xl font-medium text-gray-900">Customer Service Burnout</h3> |
| <p class="mt-2 text-red-500 font-medium">Problem</p> |
| </div> |
| </div> |
| <div class="p-8 md:w-2/3"> |
| <div class="flex items-center"> |
| <div class="flex-shrink-0 bg-green-100 rounded-md p-3"> |
| <i class="fas fa-check-circle text-green-600 text-xl"></i> |
| </div> |
| <div class="ml-4"> |
| <h4 class="text-lg font-medium text-gray-900">AI Solution</h4> |
| <p class="mt-1 text-gray-600">Answers FAQs, handles complaints, sends updates to managers, and provides full conversation transcripts with summaries.</p> |
| </div> |
| </div> |
| <div class="mt-6"> |
| <div class="flex items-start"> |
| <div class="flex-shrink-0"> |
| <i class="fas fa-check text-green-500"></i> |
| </div> |
| <div class="ml-3"> |
| <p class="text-gray-700">Instant answers to common questions 24/7</p> |
| </div> |
| </div> |
| <div class="flex items-start mt-3"> |
| <div class="flex-shrink-0"> |
| <i class="fas fa-check text-green-500"></i> |
| </div> |
| <div class="ml-3"> |
| <p class="text-gray-700">Escalates complex issues to the right person</p> |
| </div> |
| </div> |
| <div class="flex items-start mt-3"> |
| <div class="flex-shrink-0"> |
| <i class="fas fa-check text-green-500"></i> |
| </div> |
| <div class="ml-3"> |
| <p class="text-gray-700">Detailed reporting so you're always informed</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="how-it-works" class="py-20 bg-gray-50"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center"> |
| <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl"> |
| How CaterAI <span class="text-blue-600">Works</span> |
| </h2> |
| <p class="mt-3 max-w-2xl mx-auto text-xl text-gray-600 sm:mt-4"> |
| Simple setup. Powerful results. In just minutes. |
| </p> |
| </div> |
|
|
| <div class="mt-16"> |
| <div class="lg:grid lg:grid-cols-3 lg:gap-8"> |
| <div class="relative"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white"> |
| <span class="text-xl font-bold">1</span> |
| </div> |
| <h3 class="mt-6 text-xl font-medium text-gray-900">Connect Your Systems</h3> |
| <p class="mt-2 text-gray-600"> |
| Link your calendar, menu pricing, and contact info. Our AI learns your business in minutes. |
| </p> |
| <div class="absolute top-0 right-0 h-full w-8 hidden lg:block"> |
| <div class="h-full w-full rounded-lg border-r-2 border-dashed border-gray-300"></div> |
| </div> |
| </div> |
|
|
| <div class="relative mt-10 lg:mt-0"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white"> |
| <span class="text-xl font-bold">2</span> |
| </div> |
| <h3 class="mt-6 text-xl font-medium text-gray-900">Train Your AI Assistant</h3> |
| <p class="mt-2 text-gray-600"> |
| Answer a few questions about your services and preferences. The AI adapts to your style. |
| </p> |
| <div class="absolute top-0 right-0 h-full w-8 hidden lg:block"> |
| <div class="h-full w-full rounded-lg border-r-2 border-dashed border-gray-300"></div> |
| </div> |
| </div> |
|
|
| <div class="mt-10 lg:mt-0"> |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white"> |
| <span class="text-xl font-bold">3</span> |
| </div> |
| <h3 class="mt-6 text-xl font-medium text-gray-900">Let It Work For You</h3> |
| <p class="mt-2 text-gray-600"> |
| Your AI assistant starts handling inquiries immediately while you focus on catering. |
| </p> |
| </div> |
| </div> |
|
|
| <div class="mt-16 flex justify-center"> |
| <div class="relative w-full max-w-4xl rounded-xl overflow-hidden shadow-xl"> |
| <img class="w-full" src="https://images.unsplash.com/photo-1556911220-bff31c812dba?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Catering setup"> |
| <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center"> |
| <button class="bg-white rounded-full p-4 hover:bg-gray-100 transition-colors duration-300"> |
| <i class="fas fa-play text-blue-600 text-2xl"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="demo" class="py-20 bg-gradient-to-br from-gray-800 to-gray-900 text-white"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="lg:grid lg:grid-cols-2 lg:gap-12 items-center"> |
| <div class="mt-10 sm:mt-12 lg:mt-0"> |
| <h2 class="text-3xl font-extrabold tracking-tight text-gray-900 sm:text-4xl"> |
| Try CaterAI <span class="text-blue-600">Yourself</span> |
| </h2> |
| <p class="mt-3 text-xl text-gray-700"> |
| Experience how our AI assistant handles a typical catering inquiry. |
| </p> |
| |
| <div class="mt-8 bg-white rounded-lg shadow-md p-6"> |
| <div class="flex items-start"> |
| <div class="flex-shrink-0"> |
| <div class="h-10 w-10 rounded-full bg-blue-100 flex items-center justify-center"> |
| <i class="fas fa-robot text-blue-600"></i> |
| </div> |
| </div> |
| <div class="ml-4"> |
| <div class="text-sm font-medium text-gray-900">CaterAI Assistant</div> |
| <div class="mt-1 text-sm text-gray-600"> |
| <p>Hi there! I'm your AI catering assistant. I can help you plan your event. What type of event are you hosting?</p> |
| </div> |
| </div> |
| </div> |
| |
| <div class="mt-4 space-y-2"> |
| <button class="w-full text-left px-4 py-2 border border-gray-300 rounded-md text-sm font-medium text-gray-700 hover:bg-gray-50"> |
| Wedding Reception |
| </button> |
| <button class="w-full text-left px-4 py-2 border border-gray-300 rounded-md text-sm font-medium text-gray-700 hover:bg-gray-50"> |
| Corporate Event |
| </button> |
| <button class="w-full text-left px-4 py-2 border border-gray-300 rounded-md text-sm font-medium text-gray-700 hover:bg-gray-50"> |
| Birthday Party |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| <div class="mt-12 sm:mt-16 lg:mt-0"> |
| <div class="bg-white rounded-xl shadow-xl p-8"> |
| <h3 class="text-2xl font-bold text-gray-900">Request a Personalized Demo</h3> |
| <p class="mt-2 text-gray-600">See how CaterAI can transform your catering business.</p> |
| |
| <form class="mt-6 space-y-6"> |
| <div> |
| <label for="name" class="block text-sm font-medium text-gray-700">Your Name</label> |
| <input type="text" id="name" name="name" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500"> |
| </div> |
| |
| <div> |
| <label for="email" class="block text-sm font-medium text-gray-700">Email Address</label> |
| <input type="email" id="email" name="email" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500"> |
| </div> |
| |
| <div> |
| <label for="business" class="block text-sm font-medium text-gray-700">Business Name</label> |
| <input type="text" id="business" name="business" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500"> |
| </div> |
| |
| <div> |
| <button type="submit" class="w-full flex justify-center py-3 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500"> |
| Schedule Demo |
| </button> |
| </div> |
| </form> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="testimonials" class="py-20 bg-gradient-to-br from-gray-800 to-gray-900 text-white"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center"> |
| <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl"> |
| What Caterers <span class="text-blue-600">Are Saying</span> |
| </h2> |
| <p class="mt-3 max-w-2xl mx-auto text-xl text-gray-600 sm:mt-4"> |
| Don't just take our word for it. Hear from catering professionals like you. |
| </p> |
| </div> |
|
|
| <div class="mt-16 relative"> |
| <div class="testimonial-slide active"> |
| <div class="bg-white rounded-xl shadow-md overflow-hidden max-w-4xl mx-auto"> |
| <div class="md:flex"> |
| <div class="md:flex-shrink-0 md:w-1/3 bg-blue-50 flex items-center justify-center p-8"> |
| <img class="h-32 w-32 rounded-full object-cover" src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Sarah Johnson"> |
| </div> |
| <div class="p-8 md:w-2/3"> |
| <div class="uppercase tracking-wide text-sm text-blue-600 font-semibold">Wedding Catering</div> |
| <p class="mt-2 text-gray-700 italic"> |
| "CaterAI has completely transformed how we handle inquiries. We went from missing 30% of potential clients to booking nearly every qualified lead. The automated quoting alone saves me 10 hours a week!" |
| </p> |
| <div class="mt-6"> |
| <p class="text-base font-medium text-gray-900">Sarah Johnson</p> |
| <p class="text-sm text-gray-500">Owner, Elegant Events Catering</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="testimonial-slide"> |
| <div class="bg-white rounded-xl shadow-md overflow-hidden max-w-4xl mx-auto"> |
| <div class="md:flex"> |
| <div class="md:flex-shrink-0 md:w-1/3 bg-blue-50 flex items-center justify-center p-8"> |
| <img class="h-32 w-32 rounded-full object-cover" src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Michael Rodriguez"> |
| </div> |
| <div class="p-8 md:w-2/3"> |
| <div class="uppercase tracking-wide text-sm text-blue-600 font-semibold">Corporate Catering</div> |
| <p class="mt-2 text-gray-600 italic"> |
| "Our corporate clients love the instant responses and professional communication. The AI handles complex booking requirements perfectly, and we've seen a 40% increase in repeat business thanks to the follow-up system." |
| </p> |
| <div class="mt-6"> |
| <p class="text-base font-medium text-gray-900">Michael Rodriguez</p> |
| <p class="text-sm text-gray-500">Director, Premier Corporate Caterers</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="testimonial-slide"> |
| <div class="bg-white rounded-xl shadow-md overflow-hidden max-w-4xl mx-auto"> |
| <div class="md:flex"> |
| <div class="md:flex-shrink-0 md:w-1/3 bg-blue-50 flex items-center justify-center p-8"> |
| <img class="h-32 w-32 rounded-full object-cover" src="https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=688&q=80" alt="Emily Chen"> |
| </div> |
| <div class="p-8 md:w-2/3"> |
| <div class="uppercase tracking-wide text-sm text-blue-600 font-semibold">Event Catering</div> |
| <p class="mt-2 text-gray-600 italic"> |
| "As a small catering business, I couldn't afford a full-time admin. CaterAI does everything I needed and more. The best part? It upsells for me! Our average order value increased by 22% without any extra effort." |
| </p> |
| <div class="mt-6"> |
| <p class="text-base font-medium text-gray-900">Emily Chen</p> |
| <p class="text-sm text-gray-500">Founder, Tasteful Gatherings</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="flex justify-center mt-8 space-x-2"> |
| <button class="testimonial-dot w-3 h-3 rounded-full bg-blue-300 focus:outline-none" data-slide="0"></button> |
| <button class="testimonial-dot w-3 h-3 rounded-full bg-blue-300 focus:outline-none" data-slide="1"></button> |
| <button class="testimonial-dot w-3 h-3 rounded-full bg-blue-300 focus:outline-none" data-slide="2"></button> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="pricing" class="py-20 bg-gray-50"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center"> |
| <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl"> |
| Simple, Transparent <span class="text-blue-600">Pricing</span> |
| </h2> |
| <p class="mt-3 max-w-2xl mx-auto text-xl text-gray-600 sm:mt-4"> |
| Book just 1 extra event and CaterAI pays for itself. |
| </p> |
| </div> |
|
|
| <div class="mt-16 space-y-12 lg:space-y-0 lg:grid lg:grid-cols-3 lg:gap-x-8"> |
| |
| <div class="relative p-8 bg-white border border-gray-200 rounded-2xl shadow-sm flex flex-col"> |
| <div class="flex-1"> |
| <h3 class="text-xl font-semibold text-gray-900">Starter</h3> |
| <p class="mt-4 flex items-baseline text-gray-800"> |
| <span class="text-4xl font-extrabold tracking-tight">$99</span> |
| <span class="ml-1 text-xl font-semibold">/month</span> |
| </p> |
| <p class="mt-4 text-sm text-gray-500"> |
| Perfect for small catering businesses or food trucks |
| </p> |
| <ul class="mt-6 space-y-4"> |
| <li class="flex"> |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-600">Up to 50 inquiries/month</span> |
| </li> |
| <li class="flex"> |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-600">Basic booking & scheduling</span> |
| </li> |
| <li class="flex"> |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-600">Instant quoting</span> |
| </li> |
| <li class="flex"> |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-600">Email & SMS notifications</span> |
| </li> |
| <li class="flex text-gray-400"> |
| <i class="fas fa-times mt-1 mr-2"></i> |
| <span>No corporate booking flows</span> |
| </li> |
| <li class="flex text-gray-400"> |
| <i class="fas fa-times mt-1 mr-2"></i> |
| <span>No advanced analytics</span> |
| </li> |
| </ul> |
| </div> |
| <div class="mt-8"> |
| <a href="#" class="block w-full py-3 px-6 border border-transparent rounded-md text-center font-medium bg-blue-50 text-blue-700 hover:bg-blue-100"> |
| Get started |
| </a> |
| </div> |
| </div> |
|
|
| |
| <div class="relative p-8 bg-gradient-to-br from-blue-900/20 to-blue-800/20 border-2 border-blue-400 rounded-2xl shadow-xl flex flex-col transform hover:scale-[1.02] transition-all duration-300"> |
| <div class="absolute top-0 left-1/2 transform -translate-x-1/2 -translate-y-1/2"> |
| <span class="inline-flex items-center px-4 py-1 rounded-full text-xs font-medium bg-blue-100 text-blue-800"> |
| Most popular |
| </span> |
| </div> |
| <div class="flex-1"> |
| <h3 class="text-xl font-semibold text-gray-900">Pro</h3> |
| <p class="mt-4 flex items-baseline text-gray-900"> |
| <span class="text-4xl font-extrabold tracking-tight">$249</span> |
| <span class="ml-1 text-xl font-semibold">/month</span> |
| </p> |
| <p class="mt-4 text-sm text-gray-500"> |
| Ideal for growing catering companies |
| </p> |
| <ul class="mt-6 space-y-4"> |
| <li class="flex"> |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-600">Up to 200 inquiries/month</span> |
| </li> |
| <li class="flex"> |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-600">Advanced booking & scheduling</span> |
| </li> |
| <li class="flex"> |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-600">Custom quoting templates</span> |
| </li> |
| <li class="flex"> |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-600">Corporate booking flows</span> |
| </li> |
| <li class="flex"> |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-600">Basic analytics dashboard</span> |
| </li> |
| <li class="flex text-gray-400"> |
| <i class="fas fa-times mt-1 mr-2"></i> |
| <span>No dedicated account manager</span> |
| </li> |
| </ul> |
| </div> |
| <div class="mt-8"> |
| <a href="#" class="block w-full py-3 px-6 border border-transparent rounded-md text-center font-medium bg-blue-600 text-white hover:bg-blue-700"> |
| Get started |
| </a> |
| </div> |
| </div> |
|
|
| |
| <div class="relative p-8 bg-white border border-gray-200 rounded-2xl shadow-sm flex flex-col"> |
| <div class="flex-1"> |
| <h3 class="text-xl font-semibold text-gray-900">Premium</h3> |
| <p class="mt-4 flex items-baseline text-gray-900"> |
| <span class="text-4xl font-extrabold tracking-tight">$499</span> |
| <span class="ml-1 text-xl font-semibold">/month</span> |
| </p> |
| <p class="mt-4 text-sm text-gray-500"> |
| For large catering operations and venues |
| </p> |
| <ul class="mt-6 space-y-4"> |
| <li class="flex"> |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-600">Unlimited inquiries</span> |
| </li> |
| <li class="flex"> |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-600">Enterprise booking system</span> |
| </li> |
| <li class="flex"> |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-600">Multi-location support</span> |
| </li> |
| <li class="flex"> |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-600">Dedicated account manager</span> |
| </li> |
| <li class="flex"> |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-600">Advanced analytics & reporting</span> |
| </li> |
| <li class="flex"> |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
| <span class="text-gray-600">API access</span> |
| </li> |
| </ul> |
| </div> |
| <div class="mt-8"> |
| <a href="#" class="block w-full py-3 px-6 border border-transparent rounded-md text-center font-medium bg-blue-50 text-blue-700 hover:bg-blue-100"> |
| Get started |
| </a> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="mt-16 bg-blue-50 rounded-xl p-8"> |
| <div class="md:flex md:items-center md:justify-between"> |
| <div> |
| <h3 class="text-2xl font-bold text-gray-900">Need a custom solution?</h3> |
| <p class="mt-2 text-gray-600"> |
| We offer enterprise plans with custom pricing for large catering groups and venues. |
| </p> |
| </div> |
| <div class="mt-4 md:mt-0"> |
| <a href="#" class="inline-flex items-center justify-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-blue-700 bg-white hover:bg-gray-50"> |
| Contact Sales |
| </a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="bg-gradient-to-r from-blue-600 to-indigo-700 relative overflow-hidden text-white"> |
| <div class="absolute inset-0 bg-[radial-gradient(circle_at_center,_var(--tw-gradient-stops))] from-blue-500/20 to-transparent"></div> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-16"> |
| <div class="text-center"> |
| <h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl"> |
| Ready to transform your catering business? |
| </h2> |
| <p class="mt-3 max-w-2xl mx-auto text-xl text-blue-100 sm:mt-4"> |
| Join hundreds of caterers who trust AI to handle their bookings. |
| </p> |
| <div class="mt-8 flex justify-center"> |
| <div class="inline-flex rounded-md shadow"> |
| <a href="#" class="inline-flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-blue-700 bg-white hover:bg-blue-50 md:py-4 md:text-lg md:px-10"> |
| Start Free Trial |
| </a> |
| </div> |
| <div class="ml-3 inline-flex"> |
| <a href="#" class="inline-flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-700 hover:bg-blue-800 md:py-4 md:text-lg md:px-10"> |
| Get Demo |
| </a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <footer class="bg-gradient-to-br from-gray-800 to-gray-900 backdrop-blur-lg border-t border-gray-300/50 text-white"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12"> |
| <div class="grid grid-cols-2 md:grid-cols-5 gap-8 text-gray-300"> |
| <div class="col-span-2"> |
| <div class="flex items-center"> |
| <span class="text-xl font-bold text-white">AI Solutions</span> |
| </div> |
| <p class="mt-4 text-gray-400"> |
| Your 24/7 AI catering assistant that books more events, saves you time, and grows your business automatically. |
| </p> |
| <div class="mt-6 flex space-x-6"> |
| <a href="#" class="text-gray-400 hover:text-white"> |
| <i class="fab fa-facebook-f"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-white"> |
| <i class="fab fa-instagram"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-white"> |
| <i class="fab fa-twitter"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-white"> |
| <i class="fab fa-linkedin-in"></i> |
| </a> |
| </div> |
| </div> |
| <div> |
| <h3 class="text-sm font-semibold text-white tracking-wider uppercase">Product</h3> |
| <div class="mt-4 space-y-4"> |
| <a href="#" class="text-base text-gray-400 hover:text-white block">Features</a> |
| <a href="#" class="text-base text-gray-400 hover:text-white block">Pricing</a> |
| <a href="#" class="text-base text-gray-400 hover:text-white block">Demo</a> |
| <a href="#" class="text-base text-gray-400 hover:text-white block">Updates</a> |
| </div> |
| </div> |
| <div> |
| <h3 class="text-sm font-semibold text-white tracking-wider uppercase">Company</h3> |
| <div class="mt-4 space-y-4"> |
| <a href="#" class="text-base text-gray-400 hover:text-white block">About</a> |
| <a href="#" class="text-base text-gray-400 hover:text-white block">Careers</a> |
| <a href="#" class="text-base text-gray-400 hover:text-white block">Contact</a> |
| <a href="#" class="text-base text-gray-400 hover:text-white block">Partners</a> |
| </div> |
| </div> |
| <div> |
| <h3 class="text-sm font-semibold text-white tracking-wider uppercase">Resources</h3> |
| <div class="mt-4 space-y-4"> |
| <a href="#" class="text-base text-gray-400 hover:text-white block">Blog</a> |
| <a href="#" class="text-base text-gray-400 hover:text-white block">Help Center</a> |
| <a href="#" class="text-base text-gray-400 hover:text-white block">Webinars</a> |
| <a href="#" class="text-base text-gray-400 hover:text-white block">Community</a> |
| </div> |
| </div> |
| <div> |
| <h3 class="text-sm font-semibold text-white tracking-wider uppercase">Legal</h3> |
| <div class="mt-4 space-y-4"> |
| <a href="#" class="text-base text-gray-400 hover:text-white block">Privacy</a> |
| <a href="#" class="text-base text-gray-400 hover:text-white block">Terms</a> |
| <a href="#" class="text-base text-gray-400 hover:text-white block">Cookie Policy</a> |
| <a href="#" class="text-base text-gray-400 hover:text-white block">GDPR</a> |
| </div> |
| </div> |
| </div> |
| <div class="mt-12 border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between"> |
| <p class="text-gray-400 text-sm"> |
| © 2023 CaterAI. All rights reserved. |
| </p> |
| <div class="mt-4 md:mt-0 flex space-x-6"> |
| <a href="#" class="text-gray-400 hover:text-white text-sm">Privacy Policy</a> |
| <a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a> |
| <a href="#" class="text-gray-400 hover:text-white text-sm">Cookie Settings</a> |
| </div> |
| </div> |
| </div> |
| </footer> |
|
|
| <script> |
| |
| document.getElementById('mobile-menu-button').addEventListener('click', function() { |
| const menu = document.getElementById('mobile-menu'); |
| menu.classList.toggle('hidden'); |
| }); |
| |
| |
| let currentTestimonial = 0; |
| const testimonials = document.querySelectorAll('.testimonial-slide'); |
| const dots = document.querySelectorAll('.testimonial-dot'); |
| |
| function showTestimonial(index) { |
| testimonials.forEach(testimonial => testimonial.classList.remove('active')); |
| dots.forEach(dot => dot.classList.remove('bg-blue-600')); |
| |
| testimonials[index].classList.add('active'); |
| dots[index].classList.add('bg-blue-600'); |
| currentTestimonial = index; |
| } |
| |
| dots.forEach((dot, index) => { |
| dot.addEventListener('click', () => showTestimonial(index)); |
| }); |
| |
| |
| setInterval(() => { |
| let nextTestimonial = (currentTestimonial + 1) % testimonials.length; |
| showTestimonial(nextTestimonial); |
| }, 8000); |
| |
| |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
| anchor.addEventListener('click', function (e) { |
| e.preventDefault(); |
| |
| const targetId = this.getAttribute('href'); |
| if (targetId === '#') return; |
| |
| const targetElement = document.querySelector(targetId); |
| if (targetElement) { |
| |
| const mobileMenu = document.getElementById('mobile-menu'); |
| if (!mobileMenu.classList.contains('hidden')) { |
| mobileMenu.classList.add('hidden'); |
| } |
| |
| |
| window.scrollTo({ |
| top: targetElement.offsetTop - 80, |
| behavior: 'smooth' |
| }); |
| } |
| }); |
| }); |
| </script> |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=cokarat/caterai" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |