From 52a8d4fa747ba52709478aea8bf0917a872f3eed Mon Sep 17 00:00:00 2001 From: Gamosoft Date: Sun, 9 Nov 2025 18:35:35 +0100 Subject: [PATCH] added screenshot to landing page --- .gitignore | 1 + README.md | 2 +- docs/index.html | 118 ++++++++++++++++++++++++++ screenshot.jpg => docs/screenshot.jpg | Bin 4 files changed, 120 insertions(+), 1 deletion(-) rename screenshot.jpg => docs/screenshot.jpg (100%) diff --git a/.gitignore b/.gitignore index e6d22b2..3a1b094 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,7 @@ wheels/ *.egg-info/ .installed.cfg *.egg +dont-upload/ # Virtual environments venv/ diff --git a/README.md b/README.md index fc21226..30516a1 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ NoteDiscovery is a **lightweight, self-hosted note-taking application** that puts you in complete control of your knowledge base. Write, organize, and discover your notes with a beautiful, modern interface—all running on your own server. -![Note Discovery](screenshot.jpg) +![Note Discovery](docs/screenshot.jpg) ## 🎯 Who is it for? diff --git a/docs/index.html b/docs/index.html index 89b474c..ec5d8e2 100644 --- a/docs/index.html +++ b/docs/index.html @@ -252,6 +252,81 @@ margin-bottom: 0.25rem; } + .screenshot-section { + margin: 4rem 0 3rem 0; + text-align: center; + } + + .screenshot-section h2 { + font-size: 2rem; + color: white; + margin-bottom: 1rem; + text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); + } + + .screenshot-section p { + color: rgba(255, 255, 255, 0.95); + font-size: 1.1rem; + margin-bottom: 2.5rem; + max-width: 600px; + margin-left: auto; + margin-right: auto; + text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2); + } + + .screenshot-container { + position: relative; + max-width: 1000px; + margin: 0 auto; + padding: 0 1rem; + } + + .screenshot-frame { + background: var(--card-bg); + border-radius: 12px; + padding: 0.5rem; + box-shadow: 0 20px 60px var(--shadow); + transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease; + overflow: hidden; + } + + .screenshot-frame:hover { + transform: translateY(-5px); + box-shadow: 0 25px 80px var(--shadow); + } + + .screenshot-window-bar { + display: flex; + align-items: center; + gap: 0.5rem; + padding: 0.6rem 0.8rem; + background: var(--card-secondary); + border-radius: 8px 8px 0 0; + margin-bottom: 0.5rem; + } + + .screenshot-dots { + display: flex; + gap: 0.4rem; + } + + .screenshot-dot { + width: 12px; + height: 12px; + border-radius: 50%; + } + + .screenshot-dot:nth-child(1) { background: #ff5f56; } + .screenshot-dot:nth-child(2) { background: #ffbd2e; } + .screenshot-dot:nth-child(3) { background: #27c93f; } + + .screenshot-frame img { + width: 100%; + height: auto; + display: block; + border-radius: 0 0 8px 8px; + } + footer { text-align: center; padding: 3rem 0; @@ -327,6 +402,32 @@ padding: 0.5rem 1.2rem; font-size: 0.9rem; } + + .screenshot-section { + margin: 3rem 0 2rem 0; + } + + .screenshot-section h2 { + font-size: 1.5rem; + } + + .screenshot-section p { + font-size: 1rem; + padding: 0 1rem; + } + + .screenshot-frame { + box-shadow: 0 10px 40px var(--shadow); + } + + .screenshot-window-bar { + padding: 0.5rem 0.6rem; + } + + .screenshot-dot { + width: 10px; + height: 10px; + } } @@ -359,6 +460,23 @@ +
+

See It in Action

+

A clean, intuitive interface designed for productivity and focus

+
+
+
+
+
+
+
+
+
+ NoteDiscovery Interface Screenshot +
+
+
+
🔒
diff --git a/screenshot.jpg b/docs/screenshot.jpg similarity index 100% rename from screenshot.jpg rename to docs/screenshot.jpg