Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Linear Portfolio - Build Modern Products</title> | |
| <link rel="icon" type="image/x-icon" href="/favicon.ico"> | |
| <link rel="stylesheet" href="style.css"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| </head> | |
| <body class="bg-white text-gray-900"> | |
| <!-- Header --> | |
| <header class="border-b border-gray-100 sticky top-0 bg-white/95 backdrop-blur-sm z-50"> | |
| <nav class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="flex justify-between items-center h-16"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 flex items-center"> | |
| <div class="w-8 h-8 bg-black rounded-lg flex items-center justify-center"> | |
| <span class="text-white font-bold text-sm">L</span> | |
| </div> | |
| <span class="ml-3 text-xl font-semibold">Portfolio</span> | |
| </div> | |
| </div> | |
| <div class="hidden md:block"> | |
| <div class="ml-10 flex items-baseline space-x-8"> | |
| <a href="#home" class="text-gray-900 hover:text-gray-600 px-3 py-2 text-sm font-medium">Home</a> | |
| <a href="#about" class="text-gray-600 hover:text-gray-900 px-3 py-2 text-sm font-medium">About</a> | |
| <a href="#work" class="text-gray-600 hover:text-gray-900 px-3 py-2 text-sm font-medium">Work</a> | |
| <a href="#services" class="text-gray-600 hover:text-gray-900 px-3 py-2 text-sm font-medium">Services</a> | |
| <a href="#contact" class="text-gray-600 hover:text-gray-900 px-3 py-2 text-sm font-medium">Contact</a> | |
| </div> | |
| </div> | |
| <div class="hidden md:block"> | |
| <a href="#contact" class="bg-black text-white hover:bg-gray-800 px-4 py-2 rounded-lg text-sm font-medium transition-colors"> | |
| Get Started | |
| </a> | |
| </div> | |
| <!-- Mobile menu button --> | |
| <div class="md:hidden"> | |
| <button type="button" class="mobile-menu-button p-2 rounded-md text-gray-600 hover:text-gray-900 hover:bg-gray-100"> | |
| <i data-feather="menu" class="w-6 h-6"></i> | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Mobile menu --> | |
| <div class="mobile-menu hidden md:hidden"> | |
| <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> | |
| <a href="#home" class="text-gray-900 block px-3 py-2 text-base font-medium">Home</a> | |
| <a href="#about" class="text-gray-600 hover:text-gray-900 block px-3 py-2 text-base font-medium">About</a> | |
| <a href="#work" class="text-gray-600 hover:text-gray-900 block px-3 py-2 text-base font-medium">Work</a> | |
| <a href="#services" class="text-gray-600 hover:text-gray-900 block px-3 py-2 text-base font-medium">Services</a> | |
| <a href="#contact" class="text-gray-600 hover:text-gray-900 block px-3 py-2 text-base font-medium">Contact</a> | |
| </div> | |
| </div> | |
| </nav> | |
| </header> | |
| <!-- Hero Section --> | |
| <section id="home" class="pt-16 pb-32 bg-gradient-to-br from-gray-50 to-white"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center max-w-4xl mx-auto"> | |
| <h1 class="text-5xl sm:text-6xl lg:text-7xl font-bold tracking-tight text-gray-900 mb-8"> | |
| Plan and build | |
| <br> | |
| <span class="text-gray-500">modern products</span> | |
| </h1> | |
| <p class="text-xl sm:text-2xl text-gray-600 mb-12 max-w-3xl mx-auto"> | |
| Streamline your development workflow with purpose-built tools for planning, tracking, and delivering exceptional products. | |
| </p> | |
| <div class="flex flex-col sm:flex-row gap-4 justify-center"> | |
| <a href="#contact" class="bg-black text-white hover:bg-gray-800 px-8 py-4 rounded-lg text-lg font-medium transition-colors"> | |
| Start Building | |
| </a> | |
| <a href="#work" class="border border-gray-300 text-gray-700 hover:bg-gray-50 px-8 py-4 rounded-lg text-lg font-medium transition-colors"> | |
| View Work | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Features Section --> | |
| <section id="services" class="py-24 bg-white"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center mb-20"> | |
| <h2 class="text-4xl font-bold text-gray-900 mb-6"> | |
| Made for modern product teams | |
| </h2> | |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto"> | |
| Shaped by the practices and principles that distinguish world-class product teams: relentless focus, fast execution, and commitment to quality. | |
| </p> | |
| </div> | |
| <div class="grid md:grid-cols-3 gap-12"> | |
| <!-- Feature 1 --> | |
| <div class="text-center"> | |
| <div class="w-16 h-16 bg-gray-100 rounded-2xl flex items-center justify-center mx-auto mb-6"> | |
| <i data-feather="cpu" class="w-8 h-8 text-gray-700"></i> | |
| </div> | |
| <h3 class="text-2xl font-semibold text-gray-900 mb-4">Purpose-built development</h3> | |
| <p class="text-gray-600"> | |
| Streamline issues, projects, and product roadmaps with tools designed specifically for modern development teams. | |
| </p> | |
| </div> | |
| <!-- Feature 2 --> | |
| <div class="text-center"> | |
| <div class="w-16 h-16 bg-gray-100 rounded-2xl flex items-center justify-center mx-auto mb-6"> | |
| <i data-feather="zap" class="w-8 h-8 text-gray-700"></i> | |
| </div> | |
| <h3 class="text-2xl font-semibold text-gray-900 mb-4">Designed to move fast</h3> | |
| <p class="text-gray-600"> | |
| Lightning-fast performance and intuitive workflows that keep your team focused and productive. | |
| </p> | |
| </div> | |
| <!-- Feature 3 --> | |
| <div class="text-center"> | |
| <div class="w-16 h-16 bg-gray-100 rounded-2xl flex items-center justify-center mx-auto mb-6"> | |
| <i data-feather="settings" class="w-8 h-8 text-gray-700"></i> | |
| </div> | |
| <h3 class="text-2xl font-semibold text-gray-900 mb-4">Crafted to perfection</h3> | |
| <p class="text-gray-600"> | |
| Every detail carefully considered to create an experience that developers love to use. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- AI Section --> | |
| <section class="py-24 bg-gray-50"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="grid lg:grid-cols-2 gap-16 items-center"> | |
| <div> | |
| <div class="inline-flex items-center bg-white border border-gray-200 rounded-full px-4 py-2 mb-6"> | |
| <span class="w-2 h-2 bg-green-500 rounded-full mr-2"></span> | |
| <span class="text-sm font-medium text-gray-700">AI-Powered Development</span> | |
| </div> | |
| <h2 class="text-4xl lg:text-5xl font-bold text-gray-900 mb-6"> | |
| Artificial intelligence assisted development | |
| </h2> | |
| <p class="text-xl text-gray-600 mb-8"> | |
| Streamline your development workflows with AI assistance for routine, manual tasks. Let AI handle the repetitive work so you can focus on building great products. | |
| </p> | |
| <a href="#contact" class="inline-flex items-center text-black font-medium hover:text-gray-700 transition-colors"> | |
| Learn more | |
| <i data-feather="arrow-right" class="w-4 h-4 ml-2"></i> | |
| </a> | |
| </div> | |
| <div class="relative"> | |
| <div class="bg-white rounded-2xl border border-gray-200 p-8 shadow-sm"> | |
| <div class="space-y-4"> | |
| <div class="flex items-center justify-between p-4 bg-gray-50 rounded-lg"> | |
| <div class="flex items-center"> | |
| <div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center"> | |
| <span class="text-blue-600 text-sm font-medium">AI</span> | |
| </div> | |
| <span class="ml-3 text-gray-900 font-medium">Smart Suggestions</span> | |
| </div> | |
| <div class="w-3 h-3 bg-green-400 rounded-full"></div> | |
| </div> | |
| <div class="p-4 border border-gray-200 rounded-lg"> | |
| <p class="text-sm text-gray-600 mb-2">Why this assignee was suggested:</p> | |
| <p class="text-sm text-gray-900">This person was the assignee on previous issues related to similar performance problems.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Work Section --> | |
| <section id="work" class="py-24 bg-white"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center mb-20"> | |
| <h2 class="text-4xl font-bold text-gray-900 mb-6"> | |
| Manage projects end-to-end | |
| </h2> | |
| <p class="text-xl text-gray-600 max-w-3xl mx-auto"> | |
| Consolidate specs, milestones, tasks, and documentation in one centralized location for complete project visibility. | |
| </p> | |
| </div> | |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Project 1 --> | |
| <div class="bg-gray-50 rounded-2xl p-8 hover:bg-gray-100 transition-colors"> | |
| <div class="w-12 h-12 bg-black rounded-xl flex items-center justify-center mb-6"> | |
| <i data-feather="smartphone" class="w-6 h-6 text-white"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-900 mb-3">Mobile App Development</h3> | |
| <p class="text-gray-600 mb-4"> | |
| Cross-platform mobile applications built with React Native and modern development practices. | |
| </p> | |
| <div class="flex items-center text-sm text-gray-500"> | |
| <i data-feather="calendar" class="w-4 h-4 mr-1"></i> | |
| <span>Ongoing</span> | |
| </div> | |
| </div> | |
| <!-- Project 2 --> | |
| <div class="bg-gray-50 rounded-2xl p-8 hover:bg-gray-100 transition-colors"> | |
| <div class="w-12 h-12 bg-black rounded-xl flex items-center justify-center mb-6"> | |
| <i data-feather="code" class="w-6 h-6 text-white"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-900 mb-3">API Integration</h3> | |
| <p class="text-gray-600 mb-4"> | |
| Robust API solutions and third-party integrations to connect your systems seamlessly. | |
| </p> | |
| <div class="flex items-center text-sm text-gray-500"> | |
| <i data-feather="calendar" class="w-4 h-4 mr-1"></i> | |
| <span>Completed</span> | |
| </div> | |
| </div> | |
| <!-- Project 3 --> | |
| <div class="bg-gray-50 rounded-2xl p-8 hover:bg-gray-100 transition-colors"> | |
| <div class="w-12 h-12 bg-black rounded-xl flex items-center justify-center mb-6"> | |
| <i data-feather="layout" class="w-6 h-6 text-white"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold text-gray-900 mb-3">Web Dashboard</h3> | |
| <p class="text-gray-600 mb-4"> | |
| Interactive dashboards and analytics interfaces for data-driven decision making. | |
| </p> | |
| <div class="flex items-center text-sm text-gray-500"> | |
| <i data-feather="calendar" class="w-4 h-4 mr-1"></i> | |
| <span>In Progress</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- About Section --> | |
| <section id="about" class="py-24 bg-gray-50"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="grid lg:grid-cols-2 gap-16 items-center"> | |
| <div> | |
| <h2 class="text-4xl lg:text-5xl font-bold text-gray-900 mb-6"> | |
| Built for developers | |
| </h2> | |
| <p class="text-xl text-gray-600 mb-8"> | |
| Every tool and workflow is designed with developer experience in mind. From lightning-fast performance to intuitive interfaces, everything is crafted to enhance your productivity. | |
| </p> | |
| <div class="space-y-6"> | |
| <div class="flex items-start"> | |
| <div class="flex-shrink-0 w-6 h-6 bg-green-100 rounded-full flex items-center justify-center mt-1"> | |
| <i data-feather="check" class="w-3 h-3 text-green-600"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <h4 class="text-lg font-semibold text-gray-900">Fast Performance</h4> | |
| <p class="text-gray-600">Optimized for speed and efficiency to keep you in flow state.</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="flex-shrink-0 w-6 h-6 bg-green-100 rounded-full flex items-center justify-center mt-1"> | |
| <i data-feather="check" class="w-3 h-3 text-green-600"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <h4 class="text-lg font-semibold text-gray-900">Intuitive Design</h4> | |
| <p class="text-gray-600">Clean, minimal interfaces that get out of your way.</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="flex-shrink-0 w-6 h-6 bg-green-100 rounded-full flex items-center justify-center mt-1"> | |
| <i data-feather="check" class="w-3 h-3 text-green-600"></i> | |
| </div> | |
| <div class="ml-4"> | |
| <h4 class="text-lg font-semibold text-gray-900">Developer First</h4> | |
| <p class="text-gray-600">Built by developers, for developers, with your workflow in mind.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="relative"> | |
| <div class="bg-white rounded-2xl border border-gray-200 p-8 shadow-sm"> | |
| <div class="space-y-4"> | |
| <div class="flex items-center justify-between p-4 bg-gray-50 rounded-lg"> | |
| <div class="flex items-center"> | |
| <div class="w-8 h-8 bg-gray-900 rounded-full flex items-center justify-center"> | |
| <span class="text-white text-sm font-medium">DV</span> | |
| </div> | |
| <span class="ml-3 text-gray-900 font-medium">Development Velocity</span> | |
| </div> | |
| <span class="text-2xl font-bold text-green-600">+340%</span> | |
| </div> | |
| <div class="grid grid-cols-2 gap-4"> | |
| <div class="p-4 border border-gray-200 rounded-lg text-center"> | |
| <div class="text-2xl font-bold text-gray-900">2.3x</div> | |
| <div class="text-sm text-gray-600">Faster Shipping</div> | |
| </div> | |
| <div class="p-4 border border-gray-200 rounded-lg text-center"> | |
| <div class="text-2xl font-bold text-gray-900">95%</div> | |
| <div class="text-sm text-gray-600">Developer Satisfaction</div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section id="contact" class="py-24 bg-white"> | |
| <div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-4xl font-bold text-gray-900 mb-6"> | |
| Let's build something great together | |
| </h2> | |
| <p class="text-xl text-gray-600"> | |
| Ready to streamline your development workflow? Get in touch and let's discuss your next project. | |
| </p> | |
| </div> | |
| <form class="space-y-6 max-w-2xl mx-auto"> | |
| <div class="grid md:grid-cols-2 gap-6"> | |
| <div> | |
| <label for="name" class="block text-sm font-medium text-gray-700 mb-2">Name</label> | |
| <input type="text" id="name" name="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-black focus:border-black transition-colors"> | |
| </div> | |
| <div> | |
| <label for="email" class="block text-sm font-medium text-gray-700 mb-2">Email</label> | |
| <input type="email" id="email" name="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-black focus:border-black transition-colors"> | |
| </div> | |
| </div> | |
| <div> | |
| <label for="company" class="block text-sm font-medium text-gray-700 mb-2">Company</label> | |
| <input type="text" id="company" name="company" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-black focus:border-black transition-colors"> | |
| </div> | |
| <div> | |
| <label for="project" class="block text-sm font-medium text-gray-700 mb-2">Project Details</label> | |
| <textarea id="project" name="project" rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-black focus:border-black transition-colors"></textarea> | |
| </div> | |
| <div class="text-center"> | |
| <button type="submit" class="bg-black text-white hover:bg-gray-800 px-8 py-4 rounded-lg text-lg font-medium transition-colors"> | |
| Send Message | |
| </button> | |
| </div> | |
| </form> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white py-16"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="grid md:grid-cols-4 gap-8"> | |
| <div class="md:col-span-2"> | |
| <div class="flex items-center mb-6"> | |
| <div class="w-8 h-8 bg-white rounded-lg flex items-center justify-center"> | |
| <span class="text-black font-bold text-sm">L</span> | |
| </div> | |
| <span class="ml-3 text-xl font-semibold">Portfolio</span> | |
| </div> | |
| <p class="text-gray-400 mb-6 max-w-md"> | |
| Building modern products with purpose-built tools for efficient development workflows. | |
| </p> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-400 hover:text-white transition-colors"> | |
| <i data-feather="github" class="w-5 h-5"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition-colors"> | |
| <i data-feather="twitter" class="w-5 h-5"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition-colors"> | |
| <i data-feather="linkedin" class="w-5 h-5"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Services</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Web Development</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Mobile Apps</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-colors">API Integration</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Consulting</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Company</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-colors">About</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Work</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Blog</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition-colors">Contact</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-gray-400 text-sm"> | |
| © 2024 Linear Portfolio Template. Built with Tailwind CSS. | |
| </p> | |
| <div class="flex space-x-6 mt-4 md:mt-0"> | |
| <a href="#" class="text-gray-400 hover:text-white text-sm transition-colors">Privacy</a> | |
| <a href="#" class="text-gray-400 hover:text-white text-sm transition-colors">Terms</a> | |
| <a href="#" class="text-gray-400 hover:text-white text-sm transition-colors">Security</a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script src="script.js"></script> | |
| <script feather.replace();></script> | |
| </body> | |
| </html> |