"use client" import { CHROME_EXTENSION_URL } from "@repo/lib/constants" import { cn } from "@lib/utils" import { dmSans125ClassName } from "@/lib/fonts" import { ChromeIcon } from "@/components/integration-icons" import { Check, Download } from "lucide-react" import { analytics } from "@/lib/analytics" function PillButton({ children, onClick, }: { children: React.ReactNode onClick?: () => void }) { return ( ) } export function ChromeDetail() { const handleInstall = () => { window.open(CHROME_EXTENSION_URL, "_blank", "noopener,noreferrer") analytics.onboardingChromeExtensionClicked({ source: "integrations" }) } return (

Chrome Extension

Save any webpage directly from your browser

Add to Chrome
{[ "Import all Twitter bookmarks", "Sync ChatGPT memories", "Save any webpage", "One time setup", ].map((text) => (
{text}
))}
) }