Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
8410675
fix(public): reword app privacy H1s to describe the policy, not relea…
nish3451 Aug 14, 2026
1b1f80a
docs(lane1): report privacy H1 fix for tinystudio-in lane 1 (#171)
nish3451 Aug 14, 2026
5bd53cd
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 15, 2026
49bb659
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 15, 2026
058f53c
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 15, 2026
922ceec
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 15, 2026
846681b
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 15, 2026
fb96996
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 15, 2026
878db88
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 15, 2026
24ca4ab
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 15, 2026
d94604f
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 15, 2026
5be76d4
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 15, 2026
b8ecd64
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 15, 2026
547c581
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 15, 2026
07cbe03
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 15, 2026
12d6ea6
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 15, 2026
8a65680
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 15, 2026
82e3ad6
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 17, 2026
2189847
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 17, 2026
b998323
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 17, 2026
da140ba
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 17, 2026
807d536
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 17, 2026
b6ed4ea
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 17, 2026
a033b4d
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 17, 2026
cdf7fd1
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 18, 2026
2361fa3
Merge branch 'main' into fix/lane1-privacy-h1s
nish3451 Aug 19, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .lane/reports/fix-lane1-privacy-h1s.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Lane report: fix/lane1-privacy-h1s

Item: App privacy page H1s still speak to App Store submission ("already public ahead of release" / "already in place before launch")

## Outcome

Fixed. PR #171: https://github.com/nish3451/tinystudio-in/pull/171

## What was wrong

Both app privacy pages had H1s that were meta-commentary about submission timing rather than describing the policy:

- `public/promptly/privacy/index.html` — "Promptly's privacy page is already public ahead of release."
- `public/drishti/privacy/index.html` — "Drishti's privacy page is already in place before launch."

Every other H1 on the site describes what the page is (e.g. "The studio privacy center for Tiny Studio.", "Website terms for Tiny Studio's public pages."). The privacy H1s were the only ones framed around App Store release status.

## Change

- `public/promptly/privacy/index.html` — H1 now "Promptly's privacy policy, before and after launch."
- `public/drishti/privacy/index.html` — H1 now "Drishti's privacy policy, before and after launch."

## Verification

- `node scripts/test-public-heading-hierarchy.mjs` — 62 checks, 0 failures
- `node scripts/test-public-link-targets.mjs` — passed
- `node scripts/test-public-structured-data.mjs` — 127 checks, 0 failures
- `node scripts/test-public-social-preview.mjs` — 137 checks, 0 failures
- `node scripts/test-public-conversion-signal.mjs` — 126 checks, 0 failures
- `git diff --check` clean

## Notes

The live site still serves the stale copy (deploy is blocked on a missing Cloudflare token per prior lane reports); the source fix is ready to go live once deploy runs.
2 changes: 1 addition & 1 deletion public/drishti/privacy/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
<section class="page-hero-card reveal">
<div>
<p class="eyebrow">Drishti privacy</p>
<h1>Drishti’s privacy page is already in place before launch.</h1>
<h1>Drishti’s privacy policy, before and after launch.</h1>
<p class="page-lead">
This is the app-specific privacy destination for Drishti. It
reflects the current planned launch scope and should stay aligned
Expand Down
2 changes: 1 addition & 1 deletion public/promptly/privacy/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
<section class="page-hero-card reveal">
<div>
<p class="eyebrow">Promptly privacy</p>
<h1>Promptly’s privacy page is already public ahead of release.</h1>
<h1>Promptly’s privacy policy, before and after launch.</h1>
<p class="page-lead">
This is the app-specific privacy destination for Promptly. It
reflects the current planned launch scope and should stay aligned
Expand Down