| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>SourceSense - AI Research Copilot</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> |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); |
| |
| body { |
| font-family: 'Inter', sans-serif; |
| -webkit-font-smoothing: antialiased; |
| overflow-x: hidden; |
| } |
| |
| .gradient-bg { |
| background: linear-gradient(135deg, #f0f4ff 0%, #f8f9ff 100%); |
| } |
| |
| .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); |
| } |
| |
| .input-focus { |
| transition: all 0.3s ease; |
| } |
| |
| .input-focus:focus { |
| box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2); |
| } |
| |
| @keyframes float { |
| 0% { transform: translateY(0px); } |
| 50% { transform: translateY(-10px); } |
| 100% { transform: translateY(0px); } |
| } |
| |
| .floating { |
| animation: float 6s ease-in-out infinite; |
| } |
| |
| .fade-in { |
| animation: fadeIn 0.5s ease-in; |
| } |
| |
| @keyframes fadeIn { |
| from { opacity: 0; transform: translateY(10px); } |
| to { opacity: 1; transform: translateY(0); } |
| } |
| |
| .loader { |
| border-top-color: #6366f1; |
| -webkit-animation: spinner 1s linear infinite; |
| animation: spinner 1s linear infinite; |
| } |
| |
| @-webkit-keyframes spinner { |
| 0% { -webkit-transform: rotate(0deg); } |
| 100% { -webkit-transform: rotate(360deg); } |
| } |
| |
| @keyframes spinner { |
| 0% { transform: rotate(0deg); } |
| 100% { transform: rotate(360deg); } |
| } |
| </style> |
| </head> |
| <body class="bg-white text-gray-900"> |
| |
| <nav class="fixed w-full bg-white bg-opacity-90 backdrop-filter backdrop-blur-sm z-50 border-b border-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"> |
| <div class="w-8 h-8 rounded-md bg-indigo-600 flex items-center justify-center"> |
| <svg class="w-5 h-5 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10"></path> |
| </svg> |
| </div> |
| <span class="ml-2 text-xl font-semibold text-gray-900">SourceSense</span> |
| </div> |
| </div> |
| <div class="hidden md:block"> |
| <div class="ml-10 flex items-center space-x-8"> |
| <a href="#" class="text-gray-500 hover:text-gray-900 px-3 py-2 text-sm font-medium">Features</a> |
| <a href="#" class="text-gray-500 hover:text-gray-900 px-3 py-2 text-sm font-medium">Pricing</a> |
| <a href="#" class="text-gray-500 hover:text-gray-900 px-3 py-2 text-sm font-medium">Resources</a> |
| <a href="#" class="text-gray-500 hover:text-gray-900 px-3 py-2 text-sm font-medium">Blog</a> |
| </div> |
| </div> |
| <div class="hidden md:block"> |
| <div class="ml-4 flex items-center md:ml-6"> |
| <a href="#" class="px-4 py-2 text-sm font-medium text-gray-700 hover:text-indigo-600">Log in</a> |
| <a href="#" class="ml-4 px-4 py-2 rounded-md text-sm font-medium text-white bg-indigo-600 hover:bg-indigo-700">Get started</a> |
| </div> |
| </div> |
| <div class="-mr-2 flex 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"> |
| <span class="sr-only">Open main menu</span> |
| <svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" /> |
| </svg> |
| </button> |
| </div> |
| </div> |
| </div> |
| </nav> |
|
|
| |
| <div class="gradient-bg pt-32 pb-20 px-4 sm:px-6 lg:px-8"> |
| <div class="max-w-7xl mx-auto"> |
| <div class="lg:grid lg:grid-cols-2 lg:gap-12 items-center"> |
| <div class="mb-12 lg:mb-0"> |
| <h1 class="text-4xl md:text-5xl font-bold leading-tight text-gray-900 mb-6"> |
| Your AI research copilot |
| </h1> |
| <p class="text-lg text-gray-600 mb-8 max-w-lg"> |
| Transform raw links, PDFs, videos, and threads into structured summaries with SourceSense. Research smarter, not harder. |
| </p> |
| <div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4"> |
| <div class="relative flex-grow"> |
| <input type="email" placeholder="Enter your email" class="w-full px-4 py-3 rounded-lg border border-gray-300 input-focus focus:outline-none focus:border-indigo-500"> |
| </div> |
| <button class="px-6 py-3 bg-indigo-600 text-white font-medium rounded-lg hover:bg-indigo-700 transition duration-200"> |
| Get started free |
| </button> |
| </div> |
| <p class="mt-3 text-sm text-gray-500"> |
| No credit card required. 7-day free trial. |
| </p> |
| </div> |
| <div class="relative"> |
| <div class="relative z-10 rounded-xl overflow-hidden shadow-xl"> |
| <img src="https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80" alt="Dashboard preview" class="w-full h-auto"> |
| <div class="absolute inset-0 bg-indigo-600 bg-opacity-20"></div> |
| </div> |
| <div class="absolute -bottom-6 -left-6 w-32 h-32 rounded-full bg-indigo-100 opacity-70"></div> |
| <div class="absolute -top-6 -right-6 w-24 h-24 rounded-full bg-purple-100 opacity-70"></div> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-white py-12"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <p class="text-center text-sm font-semibold uppercase text-gray-500 tracking-wide mb-8"> |
| Trusted by researchers at |
| </p> |
| <div class="grid grid-cols-2 gap-8 md:grid-cols-6 lg:grid-cols-5"> |
| <div class="col-span-1 flex justify-center items-center"> |
| <img class="h-8 opacity-60 hover:opacity-100 transition" src="https://upload.wikimedia.org/wikipedia/commons/2/2f/Google_2015_logo.svg" alt="Google"> |
| </div> |
| <div class="col-span-1 flex justify-center items-center"> |
| <img class="h-8 opacity-60 hover:opacity-100 transition" src="https://upload.wikimedia.org/wikipedia/commons/a/a9/Amazon_logo.svg" alt="Amazon"> |
| </div> |
| <div class="col-span-1 flex justify-center items-center"> |
| <img class="h-8 opacity-60 hover:opacity-100 transition" src="https://upload.wikimedia.org/wikipedia/commons/f/fa/Microsoft_logo.svg" alt="Microsoft"> |
| </div> |
| <div class="col-span-1 flex justify-center items-center"> |
| <img class="h-8 opacity-60 hover:opacity-100 transition" src="https://upload.wikimedia.org/wikipedia/commons/f/ff/Tesla_Motors.svg" alt="Tesla"> |
| </div> |
| <div class="col-span-1 flex justify-center items-center"> |
| <img class="h-8 opacity-60 hover:opacity-100 transition" src="https://upload.wikimedia.org/wikipedia/commons/a/ab/Meta-Logo.png" alt="Meta"> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="py-20 bg-white"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl"> |
| Research at the speed of thought |
| </h2> |
| <p class="mt-4 max-w-2xl text-xl text-gray-600 mx-auto"> |
| SourceSense understands content like a human, extracting key insights from any source. |
| </p> |
| </div> |
| |
| <div class="grid md:grid-cols-3 gap-8"> |
| |
| <div class="bg-white p-8 rounded-xl shadow-sm card-hover border border-gray-100"> |
| <div class="w-12 h-12 rounded-lg bg-indigo-50 flex items-center justify-center mb-6"> |
| <svg class="w-6 h-6 text-indigo-600" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10"></path> |
| </svg> |
| </div> |
| <h3 class="text-lg font-medium text-gray-900 mb-3">Multi-source intelligence</h3> |
| <p class="text-gray-600"> |
| Process links, PDFs, videos, and social threads in one place. Our AI understands context across formats. |
| </p> |
| </div> |
| |
| |
| <div class="bg-white p-8 rounded-xl shadow-sm card-hover border border-gray-100"> |
| <div class="w-12 h-12 rounded-lg bg-purple-50 flex items-center justify-center mb-6"> |
| <svg class="w-6 h-6 text-purple-600" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2"></path> |
| </svg> |
| </div> |
| <h3 class="text-lg font-medium text-gray-900 mb-3">Structured summaries</h3> |
| <p class="text-gray-600"> |
| Get clean, organized outputs with key points, quotes, and references—not just raw text extraction. |
| </p> |
| </div> |
| |
| |
| <div class="bg-white p-8 rounded-xl shadow-sm card-hover border border-gray-100"> |
| <div class="w-12 h-12 rounded-lg bg-blue-50 flex items-center justify-center mb-6"> |
| <svg class="w-6 h-6 text-blue-600" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> |
| <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"></path> |
| </svg> |
| </div> |
| <h3 class="text-lg font-medium text-gray-900 mb-3">Knowledge graphs</h3> |
| <p class="text-gray-600"> |
| See how concepts connect across your research with interactive visualizations of relationships. |
| </p> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="py-20 gradient-bg"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="lg:grid lg:grid-cols- |
| </html> |