Skip to content

Commit 8e8d02d

Browse files
nedtwiggclaude
andcommitted
Add under-construction banners to website, root README, and vscode-ext README
Temporary WIP notices to prevent premature sharing while the extension is published to VSCode Marketplace and OpenVSX for deployment testing. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 9deb58d commit 8e8d02d

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
> [!CAUTION]
2+
> This project is under construction and not ready for public use. Please check back in a few days!
3+
14
# MouseTerm
25

36
Multitasking terminal for mice.

vscode-ext/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
> [!CAUTION]
2+
> This project is under construction and not ready for public use. Please check back in a few days!
3+
14
# MouseTerm
25

36
Multitasking terminal with tmux keybindings, mouse support, and a built-in alarm system for completed tasks and prompts.

website/src/components/SiteHeader.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,13 @@ interface SiteHeaderProps {
2525
const SiteHeader = forwardRef<HTMLElement, SiteHeaderProps>(
2626
function SiteHeader({ activePath, brandRef, brandVisible = true, style }, ref) {
2727
return (
28+
<>
29+
<div className="fixed top-0 left-0 right-0 z-30 bg-[var(--color-caramel)] text-[var(--color-bg)] text-center text-sm font-display font-semibold py-1.5">
30+
🚧 Under construction — check back soon! 🚧
31+
</div>
2832
<header
2933
ref={ref}
30-
className="fixed top-0 left-0 right-0 z-20 flex items-center justify-between px-4 md:px-8 py-4 md:py-6 font-display text-lg font-medium"
34+
className="fixed top-8 left-0 right-0 z-20 flex items-center justify-between px-4 md:px-8 py-4 md:py-6 font-display text-lg font-medium"
3135
style={{ color: "color-mix(in oklab, var(--color-text) 80%, transparent)", ...style }}
3236
>
3337
<a
@@ -64,6 +68,7 @@ const SiteHeader = forwardRef<HTMLElement, SiteHeaderProps>(
6468
})}
6569
</nav>
6670
</header>
71+
</>
6772
);
6873
},
6974
);

0 commit comments

Comments
 (0)