note-app-example / index.html
shazzar00ni's picture
Notebook Upgrade Move All Notes Notebooks Noteboards Shared Notebooks 4 Books Simple Scribbles passwords Saved Links Shannons Notes Simple Scribbles 8 Notes Paperlyte Landing Page Paperlyte Landing PageHero Section Headline: “Note-taking, Lighter Than Ever” Subtext: Capture your thoughts instantly in a space that’s lightning-fast, beautifully clean, and utterly distraction-free. Cal Jul 31 Simple Scribbles Prd Jul 26 Simple Scribbles Prd Jul 26 Github Issues ✅ Main GitHub Issues: Each corresponds to a section of the product from planning to polish: [x] Project Initialization [x] UI/UX Design Jul 26 GitHub Issues 📌 GitHub Issues for Simple Scribbles MVP ✅ Create/Edit Notes Title: Create & Edit Notes Functionality Labels: feature, mvp, editor Description: Implement a text editor component that allows users to write Jul 26 readme # Simple Scribbles - Waitlist & Demo Application A comprehensive waitlist system and product demo for Simple Scribbles, an intuitive, simple and minimal note-taking application for busy professionals a Jul 24 Product requirement document 📝 Product Requirements Document (PRD) Project Name: Simple Scribbles Author: Shannon (Queen Shazza) Date: July 21, 2025 Version: 1.0 MVP Status: In development 1. 🌟 Purpose & Goals Objective: Build a clean, Jul 24 Simple Scribbles Plan 📝 Phase 1: Discovery & Planning (2 weeks) Task Deliverable Owner • Define vision & goals Project Vision Doc You / PM • User research & personas 3 User Personas + Pain Points You • Feature backlog & user storie Jul 23 readme New Jarvis logo ⌃J - Initial Deployment
7649866 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Scribbles - Notebook Upgrade</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>
.note-card:hover .note-actions {
opacity: 1;
}
.sidebar-item:hover {
background-color: rgba(255, 255, 255, 0.1);
}
.sidebar-item.active {
background-color: rgba(255, 255, 255, 0.2);
border-left: 3px solid white;
}
.search-input:focus {
outline: none;
box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}
.markdown-content h1 {
font-size: 1.5rem;
font-weight: bold;
margin: 1rem 0;
}
.markdown-content h2 {
font-size: 1.25rem;
font-weight: bold;
margin: 0.75rem 0;
}
.markdown-content p {
margin: 0.5rem 0;
}
.markdown-content ul {
list-style-type: disc;
margin-left: 1.5rem;
}
</style>
</head>
<body class="bg-gray-900 text-gray-100 flex h-screen overflow-hidden">
<!-- Sidebar -->
<div class="w-64 bg-gray-800 flex flex-col border-r border-gray-700">
<div class="p-4 border-b border-gray-700">
<div class="flex items-center justify-between">
<h1 class="text-xl font-bold flex items-center">
<i class="fas fa-book-open mr-2"></i> Simple Scribbles
</h1>
<button class="text-gray-400 hover:text-white">
<i class="fas fa-ellipsis-h"></i>
</button>
</div>
</div>
<div class="p-4">
<button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded-lg flex items-center justify-center">
<i class="fas fa-plus mr-2"></i> New Note
</button>
</div>
<div class="px-4 mb-4">
<div class="relative">
<input type="text" placeholder="Search notes..." class="search-input w-full bg-gray-700 text-white px-4 py-2 rounded-lg pl-10 focus:ring-2 focus:ring-blue-500">
<i class="fas fa-search absolute left-3 top-3 text-gray-400"></i>
</div>
</div>
<div class="flex-1 overflow-y-auto">
<div class="mb-6">
<div class="px-4 py-2 text-gray-400 uppercase text-xs font-semibold">Notebooks</div>
<div class="sidebar-item active">
<a href="#" class="block px-4 py-2 text-white flex items-center">
<i class="fas fa-book mr-2"></i> Simple Scribbles
</a>
</div>
<div class="sidebar-item">
<a href="#" class="block px-4 py-2 text-gray-300 hover:text-white flex items-center">
<i class="fas fa-book mr-2"></i> Passwords
</a>
</div>
<div class="sidebar-item">
<a href="#" class="block px-4 py-2 text-gray-300 hover:text-white flex items-center">
<i class="fas fa-book mr-2"></i> Saved Links
</a>
</div>
<div class="sidebar-item">
<a href="#" class="block px-4 py-2 text-gray-300 hover:text-white flex items-center">
<i class="fas fa-book mr-2"></i> Shannons Notes
</a>
</div>
</div>
<div class="mb-6">
<div class="px-4 py-2 text-gray-400 uppercase text-xs font-semibold">Tags</div>
<div class="sidebar-item">
<a href="#" class="block px-4 py-2 text-gray-300 hover:text-white flex items-center">
<i class="fas fa-tag mr-2 text-blue-400"></i> MVP
</a>
</div>
<div class="sidebar-item">
<a href="#" class="block px-4 py-2 text-gray-300 hover:text-white flex items-center">
<i class="fas fa-tag mr-2 text-green-400"></i> Feature
</a>
</div>
<div class="sidebar-item">
<a href="#" class="block px-4 py-2 text-gray-300 hover:text-white flex items-center">
<i class="fas fa-tag mr-2 text-purple-400"></i> Documentation
</a>
</div>
</div>
</div>
<div class="p-4 border-t border-gray-700">
<div class="flex items-center">
<div class="w-8 h-8 rounded-full bg-blue-600 flex items-center justify-center text-white font-semibold">S</div>
<div class="ml-3">
<div class="text-sm font-medium">Shannon</div>
<div class="text-xs text-gray-400">Queen Shazza</div>
</div>
</div>
</div>
</div>
<!-- Main Content -->
<div class="flex-1 flex flex-col overflow-hidden">
<!-- Header -->
<div class="bg-gray-800 border-b border-gray-700 p-4 flex items-center justify-between">
<div class="flex items-center">
<h2 class="text-lg font-semibold">Simple Scribbles</h2>
<span class="ml-2 bg-gray-700 text-xs px-2 py-1 rounded">8 Notes</span>
</div>
<div class="flex items-center space-x-4">
<button class="text-gray-400 hover:text-white">
<i class="fas fa-sort-alpha-down"></i>
</button>
<button class="text-gray-400 hover:text-white">
<i class="fas fa-filter"></i>
</button>
<button class="text-gray-400 hover:text-white">
<i class="fas fa-search"></i>
</button>
</div>
</div>
<!-- Notes List -->
<div class="flex-1 overflow-y-auto">
<div class="p-4">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
<!-- Note Card 1 -->
<div class="note-card bg-gray-800 rounded-lg border border-gray-700 overflow-hidden hover:shadow-lg transition-shadow duration-200">
<div class="p-4 border-b border-gray-700">
<div class="flex justify-between items-start">
<h3 class="font-semibold text-lg mb-1">Paperlyte Landing Page</h3>
<div class="note-actions opacity-0 transition-opacity duration-200 flex space-x-2">
<button class="text-gray-400 hover:text-blue-400">
<i class="fas fa-edit"></i>
</button>
<button class="text-gray-400 hover:text-red-400">
<i class="fas fa-trash"></i>
</button>
</div>
</div>
<div class="text-sm text-gray-400 mb-2">Paperlyte Landing Page</div>
<div class="text-xs text-gray-500">Hero Section Headline: "Note-taking, Lighter Than Ever" Subtext: Capture your thoughts instantly in a space that's lightning-fast, beautifully clean, and utterly distraction-free.</div>
</div>
<div class="p-3 bg-gray-700 text-xs text-gray-400 flex justify-between items-center">
<span>Cal Jul 31</span>
<div class="flex space-x-1">
<span class="px-2 py-1 bg-gray-600 rounded">Landing</span>
</div>
</div>
</div>
<!-- Note Card 2 -->
<div class="note-card bg-gray-800 rounded-lg border border-gray-700 overflow-hidden hover:shadow-lg transition-shadow duration-200">
<div class="p-4 border-b border-gray-700">
<div class="flex justify-between items-start">
<h3 class="font-semibold text-lg mb-1">Simple Scribbles Prd</h3>
<div class="note-actions opacity-0 transition-opacity duration-200 flex space-x-2">
<button class="text-gray-400 hover:text-blue-400">
<i class="fas fa-edit"></i>
</button>
<button class="text-gray-400 hover:text-red-400">
<i class="fas fa-trash"></i>
</button>
</div>
</div>
<div class="text-sm text-gray-400 mb-2">Product requirement document</div>
<div class="text-xs text-gray-500">📝 Product Requirements Document (PRD) Project Name: Simple Scribbles Author: Shannon (Queen Shazza) Date: July 21, 2025 Version: 1.0 MVP Status: In development 1. 🌟 Purpose & Goals Objective: Build a clean,...</div>
</div>
<div class="p-3 bg-gray-700 text-xs text-gray-400 flex justify-between items-center">
<span>Jul 26</span>
<div class="flex space-x-1">
<span class="px-2 py-1 bg-purple-600 rounded">Documentation</span>
</div>
</div>
</div>
<!-- Note Card 3 -->
<div class="note-card bg-gray-800 rounded-lg border border-gray-700 overflow-hidden hover:shadow-lg transition-shadow duration-200">
<div class="p-4 border-b border-gray-700">
<div class="flex justify-between items-start">
<h3 class="font-semibold text-lg mb-1">Github Issues</h3>
<div class="note-actions opacity-0 transition-opacity duration-200 flex space-x-2">
<button class="text-gray-400 hover:text-blue-400">
<i class="fas fa-edit"></i>
</button>
<button class="text-gray-400 hover:text-red-400">
<i class="fas fa-trash"></i>
</button>
</div>
</div>
<div class="text-sm text-gray-400 mb-2">GitHub Issues</div>
<div class="text-xs text-gray-500">✅ Main GitHub Issues: Each corresponds to a section of the product from planning to polish: [x] Project Initialization [x] UI/UX Design</div>
</div>
<div class="p-3 bg-gray-700 text-xs text-gray-400 flex justify-between items-center">
<span>Jul 26</span>
<div class="flex space-x-1">
<span class="px-2 py-1 bg-green-600 rounded">Feature</span>
<span class="px-2 py-1 bg-blue-600 rounded">MVP</span>
</div>
</div>
</div>
<!-- Note Card 4 -->
<div class="note-card bg-gray-800 rounded-lg border border-gray-700 overflow-hidden hover:shadow-lg transition-shadow duration-200">
<div class="p-4 border-b border-gray-700">
<div class="flex justify-between items-start">
<h3 class="font-semibold text-lg mb-1">GitHub Issues for Simple Scribbles MVP</h3>
<div class="note-actions opacity-0 transition-opacity duration-200 flex space-x-2">
<button class="text-gray-400 hover:text-blue-400">
<i class="fas fa-edit"></i>
</button>
<button class="text-gray-400 hover:text-red-400">
<i class="fas fa-trash"></i>
</button>
</div>
</div>
<div class="text-sm text-gray-400 mb-2">GitHub Issues</div>
<div class="text-xs text-gray-500">✅ Create/Edit Notes Title: Create & Edit Notes Functionality Labels: feature, mvp, editor Description: Implement a text editor component that allows users to write</div>
</div>
<div class="p-3 bg-gray-700 text-xs text-gray-400 flex justify-between items-center">
<span>Jul 26</span>
<div class="flex space-x-1">
<span class="px-2 py-1 bg-green-600 rounded">Feature</span>
<span class="px-2 py-1 bg-blue-600 rounded">MVP</span>
</div>
</div>
</div>
<!-- Note Card 5 -->
<div class="note-card bg-gray-800 rounded-lg border border-gray-700 overflow-hidden hover:shadow-lg transition-shadow duration-200">
<div class="p-4 border-b border-gray-700">
<div class="flex justify-between items-start">
<h3 class="font-semibold text-lg mb-1">Simple Scribbles - Waitlist & Demo</h3>
<div class="note-actions opacity-0 transition-opacity duration-200 flex space-x-2">
<button class="text-gray-400 hover:text-blue-400">
<i class="fas fa-edit"></i>
</button>
<button class="text-gray-400 hover:text-red-400">
<i class="fas fa-trash"></i>
</button>
</div>
</div>
<div class="text-sm text-gray-400 mb-2">readme</div>
<div class="text-xs text-gray-500">A comprehensive waitlist system and product demo for Simple Scribbles, an intuitive, simple and minimal note-taking application for busy professionals</div>
</div>
<div class="p-3 bg-gray-700 text-xs text-gray-400 flex justify-between items-center">
<span>Jul 24</span>
<div class="flex space-x-1">
<span class="px-2 py-1 bg-purple-600 rounded">Documentation</span>
</div>
</div>
</div>
<!-- Note Card 6 -->
<div class="note-card bg-gray-800 rounded-lg border border-gray-700 overflow-hidden hover:shadow-lg transition-shadow duration-200">
<div class="p-4 border-b border-gray-700">
<div class="flex justify-between items-start">
<h3 class="font-semibold text-lg mb-1">Simple Scribbles Plan</h3>
<div class="note-actions opacity-0 transition-opacity duration-200 flex space-x-2">
<button class="text-gray-400 hover:text-blue-400">
<i class="fas fa-edit"></i>
</button>
<button class="text-gray-400 hover:text-red-400">
<i class="fas fa-trash"></i>
</button>
</div>
</div>
<div class="text-sm text-gray-400 mb-2">readme</div>
<div class="text-xs text-gray-500">📝 Phase 1: Discovery & Planning (2 weeks) Task Deliverable Owner • Define vision & goals Project Vision Doc You / PM • User research & personas 3 User Personas + Pain Points You • Feature backlog & user stories</div>
</div>
<div class="p-3 bg-gray-700 text-xs text-gray-400 flex justify-between items-center">
<span>Jul 23</span>
<div class="flex space-x-1">
<span class="px-2 py-1 bg-purple-600 rounded">Documentation</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Floating Action Button -->
<div class="absolute bottom-6 right-6">
<button class="w-14 h-14 bg-blue-600 hover:bg-blue-700 text-white rounded-full shadow-lg flex items-center justify-center">
<i class="fas fa-plus text-xl"></i>
</button>
</div>
</div>
<script>
// Simple script to handle note selection
document.addEventListener('DOMContentLoaded', function() {
const noteCards = document.querySelectorAll('.note-card');
noteCards.forEach(card => {
card.addEventListener('click', function(e) {
// Don't trigger if clicking on action buttons
if (e.target.closest('.note-actions')) {
return;
}
// Remove active class from all cards
noteCards.forEach(c => c.classList.remove('border-blue-500'));
// Add active class to clicked card
this.classList.add('border-blue-500');
});
});
// Handle sidebar item clicks
const sidebarItems = document.querySelectorAll('.sidebar-item');
sidebarItems.forEach(item => {
item.addEventListener('click', function() {
sidebarItems.forEach(i => i.classList.remove('active'));
this.classList.add('active');
});
});
});
</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=shazzar00ni/note-app-example" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>