create this website:
Browse files- README.md +8 -5
- components/footer.js +68 -0
- components/navbar.js +44 -0
- index.html +111 -19
- script.js +18 -0
- style.css +18 -18
README.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: LinearLite - Project Management Bliss π
|
| 3 |
+
colorFrom: red
|
| 4 |
+
colorTo: purple
|
| 5 |
+
emoji: π³
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite-v3
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# Welcome to your new DeepSite project!
|
| 13 |
+
This project was created with [DeepSite](https://huggingface.co/deepsite).
|
components/footer.js
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
class CustomFooter extends HTMLElement {
|
| 2 |
+
connectedCallback() {
|
| 3 |
+
this.attachShadow({ mode: 'open' });
|
| 4 |
+
this.shadowRoot.innerHTML = `
|
| 5 |
+
<style>
|
| 6 |
+
.footer-link:hover {
|
| 7 |
+
color: #3b82f6;
|
| 8 |
+
}
|
| 9 |
+
</style>
|
| 10 |
+
<footer class="bg-gray-50 border-t border-gray-200 py-12">
|
| 11 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 12 |
+
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
|
| 13 |
+
<div>
|
| 14 |
+
<h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase mb-4">Product</h3>
|
| 15 |
+
<ul class="space-y-2">
|
| 16 |
+
<li><a href="/features" class="footer-link text-gray-600 transition">Features</a></li>
|
| 17 |
+
<li><a href="/pricing" class="footer-link text-gray-600 transition">Pricing</a></li>
|
| 18 |
+
<li><a href="/integrations" class="footer-link text-gray-600 transition">Integrations</a></li>
|
| 19 |
+
<li><a href="/changelog" class="footer-link text-gray-600 transition">Changelog</a></li>
|
| 20 |
+
</ul>
|
| 21 |
+
</div>
|
| 22 |
+
<div>
|
| 23 |
+
<h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase mb-4">Company</h3>
|
| 24 |
+
<ul class="space-y-2">
|
| 25 |
+
<li><a href="/about" class="footer-link text-gray-600 transition">About</a></li>
|
| 26 |
+
<li><a href="/blog" class="footer-link text-gray-600 transition">Blog</a></li>
|
| 27 |
+
<li><a href="/careers" class="footer-link text-gray-600 transition">Careers</a></li>
|
| 28 |
+
<li><a href="/press" class="footer-link text-gray-600 transition">Press</a></li>
|
| 29 |
+
</ul>
|
| 30 |
+
</div>
|
| 31 |
+
<div>
|
| 32 |
+
<h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase mb-4">Resources</h3>
|
| 33 |
+
<ul class="space-y-2">
|
| 34 |
+
<li><a href="/docs" class="footer-link text-gray-600 transition">Documentation</a></li>
|
| 35 |
+
<li><a href="/community" class="footer-link text-gray-600 transition">Community</a></li>
|
| 36 |
+
<li><a href="/support" class="footer-link text-gray-600 transition">Support</a></li>
|
| 37 |
+
<li><a href="/status" class="footer-link text-gray-600 transition">Status</a></li>
|
| 38 |
+
</ul>
|
| 39 |
+
</div>
|
| 40 |
+
<div>
|
| 41 |
+
<h3 class="text-sm font-semibold text-gray-500 tracking-wider uppercase mb-4">Legal</h3>
|
| 42 |
+
<ul class="space-y-2">
|
| 43 |
+
<li><a href="/privacy" class="footer-link text-gray-600 transition">Privacy</a></li>
|
| 44 |
+
<li><a href="/terms" class="footer-link text-gray-600 transition">Terms</a></li>
|
| 45 |
+
<li><a href="/security" class="footer-link text-gray-600 transition">Security</a></li>
|
| 46 |
+
</ul>
|
| 47 |
+
</div>
|
| 48 |
+
</div>
|
| 49 |
+
<div class="mt-12 pt-8 border-t border-gray-200 flex flex-col md:flex-row justify-between items-center">
|
| 50 |
+
<div class="flex space-x-6 mb-4 md:mb-0">
|
| 51 |
+
<a href="https://twitter.com" class="text-gray-400 hover:text-primary-500 transition">
|
| 52 |
+
<i data-feather="twitter"></i>
|
| 53 |
+
</a>
|
| 54 |
+
<a href="https://github.com" class="text-gray-400 hover:text-primary-500 transition">
|
| 55 |
+
<i data-feather="github"></i>
|
| 56 |
+
</a>
|
| 57 |
+
<a href="https://linkedin.com" class="text-gray-400 hover:text-primary-500 transition">
|
| 58 |
+
<i data-feather="linkedin"></i>
|
| 59 |
+
</a>
|
| 60 |
+
</div>
|
| 61 |
+
<p class="text-gray-500 text-sm">Β© 2023 LinearLite. All rights reserved.</p>
|
| 62 |
+
</div>
|
| 63 |
+
</div>
|
| 64 |
+
</footer>
|
| 65 |
+
`;
|
| 66 |
+
}
|
| 67 |
+
}
|
| 68 |
+
customElements.define('custom-footer', CustomFooter);
|
components/navbar.js
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
class CustomNavbar extends HTMLElement {
|
| 2 |
+
connectedCallback() {
|
| 3 |
+
this.attachShadow({ mode: 'open' });
|
| 4 |
+
this.shadowRoot.innerHTML = `
|
| 5 |
+
<style>
|
| 6 |
+
.navbar {
|
| 7 |
+
backdrop-filter: blur(8px);
|
| 8 |
+
background-color: rgba(255, 255, 255, 0.8);
|
| 9 |
+
}
|
| 10 |
+
@media (prefers-color-scheme: dark) {
|
| 11 |
+
.navbar {
|
| 12 |
+
background-color: rgba(17, 24, 39, 0.8);
|
| 13 |
+
}
|
| 14 |
+
}
|
| 15 |
+
</style>
|
| 16 |
+
<nav class="navbar sticky top-0 z-50 border-b border-gray-200">
|
| 17 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 18 |
+
<div class="flex justify-between h-16 items-center">
|
| 19 |
+
<div class="flex items-center">
|
| 20 |
+
<a href="/" class="flex items-center space-x-2">
|
| 21 |
+
<i data-feather="box" class="text-primary-500"></i>
|
| 22 |
+
<span class="font-bold text-xl">LinearLite</span>
|
| 23 |
+
</a>
|
| 24 |
+
<div class="hidden md:flex items-center space-x-6 ml-12">
|
| 25 |
+
<a href="/features" class="text-gray-600 hover:text-gray-900 transition">Features</a>
|
| 26 |
+
<a href="/pricing" class="text-gray-600 hover:text-gray-900 transition">Pricing</a>
|
| 27 |
+
<a href="/blog" class="text-gray-600 hover:text-gray-900 transition">Blog</a>
|
| 28 |
+
<a href="/docs" class="text-gray-600 hover:text-gray-900 transition">Docs</a>
|
| 29 |
+
</div>
|
| 30 |
+
</div>
|
| 31 |
+
<div class="flex items-center space-x-4">
|
| 32 |
+
<a href="/login" class="text-gray-600 hover:text-gray-900 transition hidden md:block">Log in</a>
|
| 33 |
+
<a href="/signup" class="bg-primary-500 hover:bg-primary-600 text-white px-4 py-2 rounded-md transition">Sign up</a>
|
| 34 |
+
<button class="md:hidden p-2 rounded-md text-gray-600 hover:text-gray-900 hover:bg-gray-100 focus:outline-none">
|
| 35 |
+
<i data-feather="menu"></i>
|
| 36 |
+
</button>
|
| 37 |
+
</div>
|
| 38 |
+
</div>
|
| 39 |
+
</div>
|
| 40 |
+
</nav>
|
| 41 |
+
`;
|
| 42 |
+
}
|
| 43 |
+
}
|
| 44 |
+
customElements.define('custom-navbar', CustomNavbar);
|
index.html
CHANGED
|
@@ -1,19 +1,111 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>LinearLite - Modern Project Management</title>
|
| 7 |
+
<link rel="stylesheet" href="style.css">
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 10 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 11 |
+
<script>
|
| 12 |
+
tailwind.config = {
|
| 13 |
+
theme: {
|
| 14 |
+
extend: {
|
| 15 |
+
colors: {
|
| 16 |
+
primary: {
|
| 17 |
+
50: '#f0f9ff',
|
| 18 |
+
100: '#e0f2fe',
|
| 19 |
+
500: '#3b82f6',
|
| 20 |
+
600: '#2563eb',
|
| 21 |
+
700: '#1d4ed8',
|
| 22 |
+
},
|
| 23 |
+
secondary: {
|
| 24 |
+
50: '#f5f3ff',
|
| 25 |
+
100: '#ede9fe',
|
| 26 |
+
500: '#8b5cf6',
|
| 27 |
+
600: '#7c3aed',
|
| 28 |
+
700: '#6d28d9',
|
| 29 |
+
}
|
| 30 |
+
}
|
| 31 |
+
}
|
| 32 |
+
}
|
| 33 |
+
}
|
| 34 |
+
</script>
|
| 35 |
+
</head>
|
| 36 |
+
<body class="bg-gray-50 text-gray-900">
|
| 37 |
+
<custom-navbar></custom-navbar>
|
| 38 |
+
|
| 39 |
+
<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
|
| 40 |
+
<section class="flex flex-col md:flex-row items-center justify-between gap-12 mb-20">
|
| 41 |
+
<div class="md:w-1/2 space-y-6">
|
| 42 |
+
<h1 class="text-4xl md:text-5xl font-bold leading-tight">
|
| 43 |
+
The modern way to manage projects
|
| 44 |
+
</h1>
|
| 45 |
+
<p class="text-lg text-gray-600 max-w-lg">
|
| 46 |
+
LinearLite helps you plan, track, and collaborate on projects with your team. Built for speed and simplicity.
|
| 47 |
+
</p>
|
| 48 |
+
<div class="flex flex-col sm:flex-row gap-3">
|
| 49 |
+
<a href="/signup" class="bg-primary-500 hover:bg-primary-600 text-white font-medium rounded-lg px-6 py-3 text-center transition">
|
| 50 |
+
Get Started
|
| 51 |
+
</a>
|
| 52 |
+
<a href="/demo" class="border border-gray-300 hover:bg-gray-50 font-medium rounded-lg px-6 py-3 text-center transition">
|
| 53 |
+
Watch Demo
|
| 54 |
+
</a>
|
| 55 |
+
</div>
|
| 56 |
+
</div>
|
| 57 |
+
<div class="md:w-1/2">
|
| 58 |
+
<img src="http://static.photos/technology/1200x630/42" alt="Dashboard preview" class="rounded-xl shadow-xl border border-gray-200">
|
| 59 |
+
</div>
|
| 60 |
+
</section>
|
| 61 |
+
|
| 62 |
+
<section class="py-12">
|
| 63 |
+
<div class="text-center mb-12">
|
| 64 |
+
<h2 class="text-3xl font-bold mb-4">Trusted by teams worldwide</h2>
|
| 65 |
+
<p class="text-gray-600 max-w-2xl mx-auto">Join thousands of productive teams who manage their work with LinearLite</p>
|
| 66 |
+
</div>
|
| 67 |
+
<div class="flex flex-wrap justify-center gap-8 md:gap-16">
|
| 68 |
+
<i data-feather="github" class="w-12 h-12 text-gray-400"></i>
|
| 69 |
+
<i data-feather="figma" class="w-12 h-12 text-gray-400"></i>
|
| 70 |
+
<i data-feather="slack" class="w-12 h-12 text-gray-400"></i>
|
| 71 |
+
<i data-feather="trello" class="w-12 h-12 text-gray-400"></i>
|
| 72 |
+
<i data-feather="microsoft" class="w-12 h-12 text-gray-400"></i>
|
| 73 |
+
</div>
|
| 74 |
+
</section>
|
| 75 |
+
|
| 76 |
+
<section class="py-12 grid md:grid-cols-3 gap-8">
|
| 77 |
+
<div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100">
|
| 78 |
+
<div class="w-12 h-12 bg-primary-100 rounded-lg flex items-center justify-center mb-4">
|
| 79 |
+
<i data-feather="zap" class="text-primary-500 w-6 h-6"></i>
|
| 80 |
+
</div>
|
| 81 |
+
<h3 class="font-bold text-xl mb-2">Lightning fast</h3>
|
| 82 |
+
<p class="text-gray-600">Built for speed with keyboard shortcuts and minimal UI friction.</p>
|
| 83 |
+
</div>
|
| 84 |
+
<div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100">
|
| 85 |
+
<div class="w-12 h-12 bg-secondary-100 rounded-lg flex items-center justify-center mb-4">
|
| 86 |
+
<i data-feather="users" class="text-secondary-500 w-6 h-6"></i>
|
| 87 |
+
</div>
|
| 88 |
+
<h3 class="font-bold text-xl mb-2">Team collaboration</h3>
|
| 89 |
+
<p class="text-gray-600">Real-time updates and comments keep everyone in sync.</p>
|
| 90 |
+
</div>
|
| 91 |
+
<div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100">
|
| 92 |
+
<div class="w-12 h-12 bg-primary-100 rounded-lg flex items-center justify-center mb-4">
|
| 93 |
+
<i data-feather="code" class="text-primary-500 w-6 h-6"></i>
|
| 94 |
+
</div>
|
| 95 |
+
<h3 class="font-bold text-xl mb-2">Developer friendly</h3>
|
| 96 |
+
<p class="text-gray-600">API first design with webhooks and integrations.</p>
|
| 97 |
+
</div>
|
| 98 |
+
</section>
|
| 99 |
+
</main>
|
| 100 |
+
|
| 101 |
+
<custom-footer></custom-footer>
|
| 102 |
+
|
| 103 |
+
<script src="components/navbar.js"></script>
|
| 104 |
+
<script src="components/footer.js"></script>
|
| 105 |
+
<script src="script.js"></script>
|
| 106 |
+
<script>
|
| 107 |
+
feather.replace();
|
| 108 |
+
</script>
|
| 109 |
+
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
|
| 110 |
+
</body>
|
| 111 |
+
</html>
|
script.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
// Mobile menu toggle functionality
|
| 2 |
+
document.addEventListener('DOMContentLoaded', () => {
|
| 3 |
+
// Mobile menu toggle would be implemented here
|
| 4 |
+
// Since we're using web components, this would need to be handled differently
|
| 5 |
+
// This is a placeholder for any shared JavaScript functionality
|
| 6 |
+
|
| 7 |
+
// Smooth scrolling for anchor links
|
| 8 |
+
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
| 9 |
+
anchor.addEventListener('click', function (e) {
|
| 10 |
+
e.preventDefault();
|
| 11 |
+
document.querySelector(this.getAttribute('href'))?.scrollIntoView({
|
| 12 |
+
behavior: 'smooth'
|
| 13 |
+
});
|
| 14 |
+
});
|
| 15 |
+
});
|
| 16 |
+
|
| 17 |
+
// Feather icons replacement (already being called in HTML)
|
| 18 |
+
});
|
style.css
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
|
|
| 1 |
body {
|
| 2 |
-
|
| 3 |
-
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
| 4 |
}
|
| 5 |
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
}
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
margin-top: 5px;
|
| 16 |
}
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
margin: 0 auto;
|
| 21 |
-
padding: 16px;
|
| 22 |
-
border: 1px solid lightgray;
|
| 23 |
-
border-radius: 16px;
|
| 24 |
}
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
|
|
|
| 28 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* Custom styles that can't be done with Tailwind */
|
| 2 |
body {
|
| 3 |
+
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
|
|
| 4 |
}
|
| 5 |
|
| 6 |
+
/* Animation for buttons */
|
| 7 |
+
button, a[role="button"] {
|
| 8 |
+
transition: all 0.2s ease;
|
| 9 |
}
|
| 10 |
|
| 11 |
+
/* Custom scrollbar */
|
| 12 |
+
::-webkit-scrollbar {
|
| 13 |
+
width: 8px;
|
| 14 |
+
height: 8px;
|
|
|
|
| 15 |
}
|
| 16 |
|
| 17 |
+
::-webkit-scrollbar-track {
|
| 18 |
+
background: #f1f1f1;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
}
|
| 20 |
|
| 21 |
+
::-webkit-scrollbar-thumb {
|
| 22 |
+
background: #888;
|
| 23 |
+
border-radius: 4px;
|
| 24 |
}
|
| 25 |
+
|
| 26 |
+
::-webkit-scrollbar-thumb:hover {
|
| 27 |
+
background: #555;
|
| 28 |
+
}
|