Skip to content
Merged
Changes from all commits
Commits
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
11 changes: 7 additions & 4 deletions apps/web-roo-code/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,17 @@ export default async function Home() {
<AnimatedText className="bg-gradient-to-r from-blue-400 to-cyan-400 bg-clip-text text-transparent">
AI-Powered
</AnimatedText>
<span className="block">Dev Team, Right in Your Editor.</span>
<span className="block">Dev Team, in Your Editor</span>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The text flow here feels a bit awkward with 'and Beyond' on a separate line. Could we consider restructuring this to improve readability? Perhaps:

This would keep the complete thought on one line.

<AnimatedText className="bg-gradient-to-r from-blue-400 to-cyan-400 bg-clip-text text-transparent">
and Beyond
</AnimatedText>
</h1>
<p className="mt-4 max-w-md text-base text-muted-foreground sm:mt-6 sm:text-lg">
Supercharge your editor with AI that{" "}
Supercharge your software development with AI that{" "}
<AnimatedText className="bg-gradient-to-r from-blue-400 to-cyan-400 bg-clip-text text-transparent">
understands your codebase
</AnimatedText>
, streamlines development, and helps you write, refactor, and debug with ease.
</AnimatedText>{" "}
and helps you write, refactor, and debug with ease in your editor and in the cloud.
</p>
</div>
<div className="flex flex-col space-y-3 sm:flex-row sm:space-x-4 sm:space-y-0">
Expand Down
Loading