Roo-Code/apps/web-roo-code/src/lib/seo.ts
Matt Rubens f8ed7a7931
Add structured data to the homepage (#8427)
Co-authored-by: roomote[bot] <219738659+roomote[bot]@users.noreply.github.com>
2025-09-30 23:53:20 -04:00

30 lines
806 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

const SITE_URL = process.env.NEXT_PUBLIC_SITE_URL ?? "https://roocode.com"
export const SEO = {
url: SITE_URL,
name: "Roo Code",
title: "Roo Code The AI dev team that gets things done",
description:
"Roo Code puts an entire AI dev team right in your editor, outpacing closed tools with deep project-wide context, multi-step agentic coding, and unmatched developer-centric flexibility.",
locale: "en_US",
ogImage: {
url: "/opengraph.png",
width: 1200,
height: 600,
alt: "Roo Code",
},
keywords: [
"Roo Code",
"AI coding agent",
"VS Code extension",
"AI pair programmer",
"software development",
"agentic coding",
"code refactoring",
"debugging",
],
category: "technology",
twitterCard: "summary_large_image" as const,
} as const
export type SeoConfig = typeof SEO