From bc93ea313226629782395be4c0c27b532223ebd6 Mon Sep 17 00:00:00 2001 From: egeozin <14356218+egeozin@users.noreply.github.com> Date: Fri, 5 Jun 2026 14:38:35 +0000 Subject: [PATCH 1/3] Rewrite homepage editable link headline --- web/src/app/(main)/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/web/src/app/(main)/page.tsx b/web/src/app/(main)/page.tsx index eefb85b..7586f26 100644 --- a/web/src/app/(main)/page.tsx +++ b/web/src/app/(main)/page.tsx @@ -280,25 +280,25 @@ export default function Home() {
-

Collaborate with.md files

+

Send an editable markdown link

- Share and edit markdown files. With live cursors,{' '} + Share one `.md` file as read and edit links. The source stays clean while live cursors,{' '} {animatedSyncWord} {' '} - sync, and comments. + sync, and comments handle collaboration.


-

Share markdown instantly

+

Create a clean markdown share

Drag one `.md` file here, or upload manually. You get a read link and an edit - link. ... or{' '} + link without moving the source into another doc tool. ... or{' '} + ) : null} +

+ +
+ +
+

+ + Back to with.md + +

+
+
+
+
+ + + ); +} From 03b77d8a1051afe87b40cf6028b4eda3929b5cbc Mon Sep 17 00:00:00 2001 From: egeozin <14356218+egeozin@users.noreply.github.com> Date: Fri, 5 Jun 2026 15:03:43 +0000 Subject: [PATCH 3/3] Add shareable markdown try-it section --- web/src/app/(main)/page.tsx | 43 ++++++++++++++++++++++++++++++++-- web/src/styles/with-md.css | 46 +++++++++++++++++++++++++++++++++++++ 2 files changed, 87 insertions(+), 2 deletions(-) diff --git a/web/src/app/(main)/page.tsx b/web/src/app/(main)/page.tsx index 7586f26..5b12d4b 100644 --- a/web/src/app/(main)/page.tsx +++ b/web/src/app/(main)/page.tsx @@ -280,9 +280,9 @@ export default function Home() {
-

Send an editable markdown link

+

Shareable markdown links

- Share one `.md` file as read and edit links. The source stays clean while live cursors,{' '} + Turn one `.md` file into a read link for reviewers and an edit link for collaborators. The source stays clean while live cursors,{' '} {animatedSyncWord}


+
+

Try it with a markdown file

+

+ Start with the README demo, a blank file, or your own `.md` file. Send the read + link when someone only needs to review. Send the edit link when they should make + changes. Source mode keeps the raw markdown available, so the file can move back + to your repo, notes app, or agent without becoming a proprietary doc. +

+
+
+

Read link

+

A clean browser page for review and sharing.

+
+
+

Edit link

+

A private edit URL for comments and changes.

+
+
+

Source preserved

+

Raw markdown stays available in source mode.

+
+
+
+ + Try the README demo + + +
+
+ +
+

Create a clean markdown share

diff --git a/web/src/styles/with-md.css b/web/src/styles/with-md.css index 9a07526..d643509 100644 --- a/web/src/styles/with-md.css +++ b/web/src/styles/with-md.css @@ -1539,6 +1539,41 @@ margin-top: 0; } +.withmd-landing-try-section { + margin-top: 0; +} + +.withmd-landing-try-list { + display: grid; + grid-template-columns: repeat(3, minmax(0, 1fr)); + gap: 16px; + margin-top: 18px; +} + +.withmd-landing-try-label { + margin: 0; + color: var(--withmd-text); + font-size: 14px; + font-weight: 500; + line-height: 1.35; +} + +.withmd-landing-try-copy { + margin: 5px 0 0; + color: var(--withmd-body); + font-size: 14px; + font-weight: 300; + line-height: 1.45; +} + +.withmd-landing-try-actions { + display: flex; + align-items: center; + flex-wrap: wrap; + gap: 18px; + margin-top: 22px; +} + .withmd-landing-anon-divider { margin-top: 26px; margin-bottom: 22px; @@ -1864,6 +1899,17 @@ height: 28px; } + .withmd-landing-try-list { + grid-template-columns: 1fr; + gap: 12px; + } + + .withmd-landing-try-actions { + align-items: flex-start; + flex-direction: column; + gap: 12px; + } + .withmd-landing-landscape-inline { font-size: 13px; padding: 7px 0 7px 10px;