mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-05 08:10:14 +00:00
30 lines
806 B
TypeScript
30 lines
806 B
TypeScript
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
|