Skip to content

Commit 820b16f

Browse files
feat: change marketing text
1 parent 7db5623 commit 820b16f

File tree

2 files changed

+18
-11
lines changed

2 files changed

+18
-11
lines changed

app/page.tsx

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -108,15 +108,30 @@ export default function Home() {
108108
return (
109109
<>
110110
<div className="max-w-[74ch] mx-auto px-2.5 sm:px-[2ch] pt-8">
111-
<h1 className="text-3xl sm:text-3xl font-bold leading-tight">
111+
<h1 className="text-3xl sm:text-3xl font-bold leading-tight mb-2">
112112
Claude Code Anywhere
113113
</h1>
114+
<p className="text-base text-gray-700 dark:text-gray-300 mb-2">
115+
Spawn and control multiple Claude Codes in parallel. Happy Coder runs on
116+
your hardware, works from your phone and desktop, and costs nothing.
117+
Open source.
118+
</p>
114119
</div>
115120

116121
<VideoComposite />
117122

118123
<section className="max-w-[72ch] mx-auto px-2.5 md:px-0">
119-
<div className="mb-6 text-base text-gray-700 dark:text-gray-300 font-mono">
124+
<div className="mb-6">
125+
<AdaptiveTerminal command="npm i -g happy-coder && happy" />
126+
</div>
127+
128+
<div className="grid grid-cols-2 gap-4 sm:flex sm:gap-4 sm:flex-wrap">
129+
<GooglePlayButton href={GOOGLE_PLAY_LINK} />
130+
<AppStoreButton href={APP_STORE_LINK} />
131+
<LaunchWebAppButton href="https://app.happy.engineering" />
132+
<StarOnGithubButton href="https://github.com/slopus/happy" />
133+
</div>
134+
<div className="mt-6 text-base text-gray-700 dark:text-gray-300 font-mono">
120135
<div className="flex items-start mb-4 ">
121136
<span>Hands-free control with voice agent—not just dictation</span>
122137
</div>
@@ -132,14 +147,6 @@ export default function Home() {
132147
<div className="flex items-start mb-10">
133148
<span>Open source (MIT licensed)</span>
134149
</div>
135-
<AdaptiveTerminal command="npm i -g happy-coder && happy" />
136-
</div>
137-
138-
<div className="grid grid-cols-2 gap-4 sm:flex sm:gap-4 sm:flex-wrap">
139-
<GooglePlayButton href={GOOGLE_PLAY_LINK} />
140-
<AppStoreButton href={APP_STORE_LINK} />
141-
<LaunchWebAppButton href="https://app.happy.engineering" />
142-
<StarOnGithubButton href="https://github.com/slopus/happy" />
143150
</div>
144151
</section>
145152

components/AdaptiveTerminal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const AdaptiveTerminal: React.FC<AdaptiveTerminalProps> = ({ command, className
2727
};
2828

2929
return (
30-
<div className={`relative rounded-lg transition-all duration-200 p-4 shadow-lg
30+
<div className={`col-span-2 relative rounded-lg transition-all duration-200 p-4 shadow-lg
3131
bg-gray-50 border border-gray-300 border-gray-200 hover:border-blue-400 hover:bg-blue-50
3232
dark:bg-white/5 dark:backdrop-blur-sm dark:border-white/10 dark:hover:border-blue-500/30 dark:hover:bg-blue-500/10
3333
${className}`}>

0 commit comments

Comments
 (0)