diff --git a/apps/web-roo-code/src/app/legal/cookies/page.tsx b/apps/web-roo-code/src/app/legal/cookies/page.tsx new file mode 100644 index 0000000000..cb67b8672c --- /dev/null +++ b/apps/web-roo-code/src/app/legal/cookies/page.tsx @@ -0,0 +1,198 @@ +import type { Metadata } from "next" +import { SEO } from "@/lib/seo" + +const TITLE = "Cookie Policy" +const DESCRIPTION = "Learn about how Roo Code uses cookies to enhance your experience and provide our services." +const PATH = "/legal/cookies" +const OG_IMAGE = SEO.ogImage + +export const metadata: Metadata = { + title: TITLE, + description: DESCRIPTION, + alternates: { + canonical: `${SEO.url}${PATH}`, + }, + openGraph: { + title: TITLE, + description: DESCRIPTION, + url: `${SEO.url}${PATH}`, + siteName: SEO.name, + images: [ + { + url: OG_IMAGE.url, + width: OG_IMAGE.width, + height: OG_IMAGE.height, + alt: OG_IMAGE.alt, + }, + ], + locale: SEO.locale, + type: "article", + }, + twitter: { + card: SEO.twitterCard, + title: TITLE, + description: DESCRIPTION, + images: [OG_IMAGE.url], + }, + keywords: [...SEO.keywords, "cookies", "privacy", "tracking", "analytics"], +} + +export default function CookiePolicy() { + return ( + <> +
+
+

Updated: September 18, 2025

+ +

Cookie Policy

+ +

+ This Cookie Policy explains how Roo Code uses cookies and similar technologies to recognize you + when you visit our website. +

+ +

What are cookies?

+

+ Cookies are small data files that are placed on your computer or mobile device when you visit a + website. Cookies help make websites work more efficiently and provide reporting information. +

+ +

Cookies we use

+

+ We use a minimal number of cookies to provide essential functionality and improve your + experience. +

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
ProviderPurposeTypeDuration + Example Cookies +
Clerk + Authentication and session management + Essential1 year and 1 month + __client_uat*, __clerk_* +
PostHog + Product analytics and feature usage tracking + + Analytics (only with your consent) + 1 yearph_*
+
+ +

+ + Clerk Privacy Policy + +

+

+ + PostHog Privacy Policy + +

+ +

Essential cookies

+

+ Essential cookies are required for our website to operate. These include authentication cookies + from Clerk that allow you to stay logged in to your account. These cookies cannot be disabled + without losing core website functionality. The lawful basis for processing these cookies is our + legitimate interest in providing secure access to our services. +

+ +

Analytics cookies

+

+ We use PostHog analytics cookies to understand how visitors interact with our website. This + helps us improve our services and user experience. Analytics cookies are placed only if you give + consent through our cookie banner. The lawful basis for processing these cookies is your + consent, which you can withdraw at any time. +

+ +

Third-party services

+

+ Our blog at{" "} + + blog.roocode.com + {" "} + is hosted on Substack. When you visit it, Substack may set cookies for analytics, + personalization, and advertising/marketing. These cookies are managed directly by Substack and + are outside our control. You can read more in{" "} + + Substack's Cookie Policy + + . +

+ +

How to control cookies

+

You can control and manage cookies through your browser settings. Most browsers allow you to:

+ +

+ Please note that blocking essential cookies may prevent you from using certain features of our + website, such as staying logged in to your account. +

+ +

Changes to this policy

+

+ We may update this Cookie Policy from time to time. When we make changes, we will update the + date at the top of this policy. We encourage you to periodically review this policy to stay + informed about our use of cookies. +

+ +

Contact us

+

+ If you have questions about our use of cookies, please contact us at{" "} + + privacy@roocode.com + + . +

+
+
+ + ) +} diff --git a/apps/web-roo-code/src/components/chromes/footer.tsx b/apps/web-roo-code/src/components/chromes/footer.tsx index 64582ab6f1..de41a5b0ca 100644 --- a/apps/web-roo-code/src/components/chromes/footer.tsx +++ b/apps/web-roo-code/src/components/chromes/footer.tsx @@ -256,6 +256,13 @@ export function Footer() { )} +
  • + + Cookie Policy + +