Skip to content

Commit 32cae25

Browse files
committed
Swap hero CTA to Cloud vs Enterprise
1 parent 1c22dc8 commit 32cae25

File tree

1 file changed

+6
-13
lines changed

1 file changed

+6
-13
lines changed

apps/web-roo-code/src/app/page.tsx

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ import {
1111
FAQSection,
1212
CodeExample,
1313
} from "@/components/homepage"
14+
import { EXTERNAL_LINKS } from "@/lib/constants"
15+
import { ArrowRight } from "lucide-react"
1416

1517
// Invalidate cache when a request comes in, at most once every hour.
1618
export const revalidate = 3600
@@ -43,28 +45,19 @@ export default async function Home() {
4345
target="_blank"
4446
className="flex w-full items-center justify-center">
4547
Install Extension
46-
<svg
47-
xmlns="http://www.w3.org/2000/svg"
48-
className="ml-2 h-4 w-4"
49-
viewBox="0 0 20 20"
50-
fill="currentColor">
51-
<path
52-
fillRule="evenodd"
53-
d="M10.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L12.586 11H5a1 1 0 110-2h7.586l-2.293-2.293a1 1 0 010-1.414z"
54-
clipRule="evenodd"
55-
/>
56-
</svg>
48+
<ArrowRight className="ml-2" />
5749
</a>
5850
</Button>
5951
<Button
6052
variant="outline"
6153
size="lg"
6254
className="w-full sm:w-auto bg-white/20 dark:bg-white/10 backdrop-blur-sm border border-black/40 dark:border-white/30 hover:border-blue-400 hover:bg-white/30 dark:hover:bg-white/20 hover:shadow-[0_0_20px_rgba(59,130,246,0.5)] transition-all duration-300">
6355
<a
64-
href="https://roocode.com/enterprise"
56+
href={EXTERNAL_LINKS.CLOUD_APP}
6557
target="_blank"
6658
className="flex w-full items-center justify-center">
67-
For Enterprise
59+
Get started with Cloud
60+
<ArrowRight className="ml-2" />
6861
</a>
6962
</Button>
7063
</div>

0 commit comments

Comments
 (0)