Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Projects | DeepSite Voyager</title> | |
| <link rel="icon" type="image/x-icon" href="https://static.photos/technology/200x200/42"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <style> | |
| .card-hover { | |
| transition: all 0.3s ease; | |
| } | |
| .card-hover: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-900 bg-gray-50"> | |
| <!-- Navbar --> | |
| <nav class="bg-white/80 backdrop-blur-md shadow-sm fixed w-full 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="globe" class="text-indigo-600 h-8 w-8"></i> | |
| <span class="ml-2 text-xl font-bold text-gray-900">DeepSite</span> | |
| </div> | |
| </div> | |
| <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8"> | |
| <a href="index.html" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Home</a> | |
| <a href="#" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Features</a> | |
| <a href="projects.html" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Projects</a> | |
| <a href="#" class="text-gray-500 hover:text-indigo-600 px-3 py-2 text-sm font-medium">About</a> | |
| <a href="#" class="ml-8 inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"> | |
| <i data-feather="log-in" class="mr-2"></i> Sign In | |
| </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-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-controls="mobile-menu" aria-expanded="false"> | |
| <span class="sr-only">Open main menu</span> | |
| <i data-feather="menu"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Projects Section --> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 pt-32 pb-16"> | |
| <div class="text-center mb-12"> | |
| <h1 class="text-4xl font-bold text-gray-900 mb-4">Our Projects</h1> | |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto"> | |
| Explore our collection of analyzed websites and AI-powered insights. | |
| </p> | |
| </div> | |
| <div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3"> | |
| <!-- Project 1 --> | |
| <div class="card-hover bg-white rounded-lg shadow-md overflow-hidden"> | |
| <div class="h-48 bg-indigo-100 flex items-center justify-center"> | |
| <img src="https://static.photos/technology/640x360/1" alt="Project 1" class="h-full w-full object-cover"> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-indigo-100 rounded-md p-2"> | |
| <i data-feather="activity" class="h-5 w-5 text-indigo-600"></i> | |
| </div> | |
| <h3 class="ml-3 text-lg font-medium text-gray-900">Performance Analysis</h3> | |
| </div> | |
| <p class="mt-4 text-gray-500"> | |
| Comprehensive website performance metrics including load time, render blocking, and more. | |
| </p> | |
| <div class="mt-6"> | |
| <a href="#" class="inline-flex items-center text-indigo-600 hover:text-indigo-500"> | |
| View Details | |
| <i data-feather="chevron-right" class="ml-1 h-4 w-4"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Project 2 --> | |
| <div class="card-hover bg-white rounded-lg shadow-md overflow-hidden"> | |
| <div class="h-48 bg-indigo-100 flex items-center justify-center"> | |
| <img src="https://static.photos/technology/640x360/2" alt="Project 2" class="h-full w-full object-cover"> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-indigo-100 rounded-md p-2"> | |
| <i data-feather="search" class="h-5 w-5 text-indigo-600"></i> | |
| </div> | |
| <h3 class="ml-3 text-lg font-medium text-gray-900">SEO Audit</h3> | |
| </div> | |
| <p class="mt-4 text-gray-500"> | |
| Detailed SEO analysis with optimization recommendations for better search rankings. | |
| </p> | |
| <div class="mt-6"> | |
| <a href="#" class="inline-flex items-center text-indigo-600 hover:text-indigo-500"> | |
| View Details | |
| <i data-feather="chevron-right" class="ml-1 h-4 w-4"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Project 3 --> | |
| <div class="card-hover bg-white rounded-lg shadow-md overflow-hidden"> | |
| <div class="h-48 bg-indigo-100 flex items-center justify-center"> | |
| <img src="https://static.photos/technology/640x360/3" alt="Project 3" class="h-full w-full object-cover"> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-indigo-100 rounded-md p-2"> | |
| <i data-feather="eye" class="h-5 w-5 text-indigo-600"></i> | |
| </div> | |
| <h3 class="ml-3 text-lg font-medium text-gray-900">Accessibility Report</h3> | |
| </div> | |
| <p class="mt-4 text-gray-500"> | |
| Complete accessibility evaluation with WCAG compliance scoring and fixes. | |
| </p> | |
| <div class="mt-6"> | |
| <a href="#" class="inline-flex items-center text-indigo-600 hover:text-indigo-500"> | |
| View Details | |
| <i data-feather="chevron-right" class="ml-1 h-4 w-4"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Project 4 --> | |
| <div class="card-hover bg-white rounded-lg shadow-md overflow-hidden"> | |
| <div class="h-48 bg-indigo-100 flex items-center justify-center"> | |
| <img src="https://static.photos/technology/640x360/4" alt="Project 4" class="h-full w-full object-cover"> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-indigo-100 rounded-md p-2"> | |
| <i data-feather="shield" class="h-5 w-5 text-indigo-600"></i> | |
| </div> | |
| <h3 class="ml-3 text-lg font-medium text-gray-900">Security Scan</h3> | |
| </div> | |
| <p class="mt-4 text-gray-500"> | |
| In-depth security assessment identifying vulnerabilities and protection measures. | |
| </p> | |
| <div class="mt-6"> | |
| <a href="#" class="inline-flex items-center text-indigo-600 hover:text-indigo-500"> | |
| View Details | |
| <i data-feather="chevron-right" class="ml-1 h-4 w-4"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Project 5 --> | |
| <div class="card-hover bg-white rounded-lg shadow-md overflow-hidden"> | |
| <div class="h-48 bg-indigo-100 flex items-center justify-center"> | |
| <img src="https://static.photos/technology/640x360/5" alt="Project 5" class="h-full w-full object-cover"> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-indigo-100 rounded-md p-2"> | |
| <i data-feather="trending-up" class="h-5 w-5 text-indigo-600"></i> | |
| </div> | |
| <h3 class="ml-3 text-lg font-medium text-gray-900">Content Strategy</h3> | |
| </div> | |
| <p class="mt-4 text-gray-500"> | |
| AI-powered content analysis with recommendations for engagement and conversions. | |
| </p> | |
| <div class="mt-6"> | |
| <a href="#" class="inline-flex items-center text-indigo-600 hover:text-indigo-500"> | |
| View Details | |
| <i data-feather="chevron-right" class="ml-1 h-4 w-4"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Project 6 --> | |
| <div class="card-hover bg-white rounded-lg shadow-md overflow-hidden"> | |
| <div class="h-48 bg-indigo-100 flex items-center justify-center"> | |
| <img src="https://static.photos/technology/640x360/6" alt="Project 6" class="h-full w-full object-cover"> | |
| </div> | |
| <div class="p-6"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 bg-indigo-100 rounded-md p-2"> | |
| <i data-feather="code" class="h-5 w-5 text-indigo-600"></i> | |
| </div> | |
| <h3 class="ml-3 text-lg font-medium text-gray-900">Code Quality</h3> | |
| </div> | |
| <p class="mt-4 text-gray-500"> | |
| Structural analysis of website code with performance optimization suggestions. | |
| </p> | |
| <div class="mt-6"> | |
| <a href="#" class="inline-flex items-center text-indigo-600 hover:text-indigo-500"> | |
| View Details | |
| <i data-feather="chevron-right" class="ml-1 h-4 w-4"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- CTA Section --> | |
| <div class="bg-indigo-700 py-16"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> | |
| <h2 class="text-3xl font-extrabold text-white sm:text-4xl"> | |
| Ready to analyze your projects? | |
| </h2> | |
| <p class="mt-4 text-xl text-indigo-200"> | |
| Get started with our powerful website analysis tools today. | |
| </p> | |
| <div class="mt-8 flex justify-center"> | |
| <a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md text-indigo-600 bg-white hover:bg-indigo-50"> | |
| <i data-feather="zap" class="mr-2"></i> Start Free Trial | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Footer --> | |
| <footer class="bg-gray-800"> | |
| <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8"> | |
| <div class="xl:grid xl:grid-cols-3 xl:gap-8"> | |
| <div class="space-y-8 xl:col-span-1"> | |
| <div class="flex items-center"> | |
| <i data-feather="globe" class="h-8 w-8 text-white"></i> | |
| <span class="ml-2 text-xl font-bold text-white">DeepSite</span> | |
| </div> | |
| <p class="text-gray-300 text-base"> | |
| Making website analysis accessible to everyone. | |
| </p> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i data-feather="twitter"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i data-feather="github"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i data-feather="linkedin"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div class="mt-12 grid grid-cols-2 gap-8 xl:mt-0 xl:col-span-2"> | |
| <div class="md:grid md:grid-cols-2 md:gap-8"> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase"> | |
| Product | |
| </h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white"> | |
| Features | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white"> | |
| Pricing | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white"> | |
| API | |
| </a> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="mt-12 md:mt-0"> | |
| <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase"> | |
| Company | |
| </h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white"> | |
| About | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white"> | |
| Blog | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white"> | |
| Careers | |
| </a> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="md:grid md:grid-cols-2 md:gap-8"> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase"> | |
| Resources | |
| </h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li> | |
| <a href="projects.html" class="text-base text-gray-400 hover:text-white"> | |
| Projects | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white"> | |
| Documentation | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white"> | |
| Support | |
| </a> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="mt-12 md:mt-0"> | |
| <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase"> | |
| Legal | |
| </h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white"> | |
| Privacy | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white"> | |
| Terms | |
| </a> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-12 border-t border-gray-700 pt-8"> | |
| <p class="text-base text-gray-400 text-center"> | |
| © 2023 DeepSite Voyager. All rights reserved. | |
| </p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> |