From cc109e14b454f2bfdb28dd3354fe3da1258b772f Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Mon, 10 Aug 2026 15:46:24 +0000 Subject: [PATCH 1/2] Add Ramp logo to website after confirmed usage permission Include Ramp in the homepage enterprise logo grid, adopters table, and wrapped customers section (LFMKT-2245). Co-authored-by: annabellscha --- components-mdx/adopters-table.mdx | 1 + components/home/img/ramp.svg | 11 +++++++++++ components/shared/EnterpriseLogoGrid.tsx | 5 +++++ components/wrapped/Customers.tsx | 6 ++++++ 4 files changed, 23 insertions(+) create mode 100644 components/home/img/ramp.svg diff --git a/components-mdx/adopters-table.mdx b/components-mdx/adopters-table.mdx index 686c216e09..aabcb8afeb 100644 --- a/components-mdx/adopters-table.mdx +++ b/components-mdx/adopters-table.mdx @@ -45,6 +45,7 @@ The following list of companies using Langfuse and their success stories is asse | [Pigment](https://www.pigment.com/) | Enterprise business planning | Langfuse Customer | | [Pipedream](https://pipedream.com/) (Workday) | AI application monitoring | [Subprocessor List](https://pipedream.com/docs/subprocessors) ([Archive](https://web.archive.org/web/20260422112230/https://pipedream.com/docs/subprocessors)) | | [Posit](https://posit.co/) | Tracing for Shiny Assistant | [Source Code](https://github.com/posit-dev/shiny-assistant/blob/main/shinyapp/app.py) ([Archive](https://web.archive.org/web/20260724080358/https://github.com/posit-dev/shiny-assistant/blob/main/shinyapp/app.py)) | +| [Ramp](https://ramp.com/) | Corporate spend management and finance platform | Langfuse Customer | | [Rocket Money](https://www.rocketmoney.com/) | Personal finance and subscription management | [OSS LLMOps Stack](https://web.archive.org/web/20260304001459/https://oss-llmops-stack.com/) | | [Salesloft](https://www.salesloft.com/) | Agent tracing, evaluation, and prompt management | [Conference Talk](https://2025.allthingsopen.org/sessions/2-for-1-ai-powered-integration-the-future-of-natural-programming-and-intelligent-connectivity-actionable-llm-agent-observability-with-langfuse) ([Archive](https://web.archive.org/web/20251006203117/https://2025.allthingsopen.org/sessions/2-for-1-ai-powered-integration-the-future-of-natural-programming-and-intelligent-connectivity-actionable-llm-agent-observability-with-langfuse)) | | [Samsara](https://www.samsara.com/) | Monitoring and optimization of Samsara Assistant | [AWS Blogpost](https://aws.amazon.com/blogs/apn/transform-large-language-model-observability-with-langfuse/) ([Archive](https://web.archive.org/web/20260630024906/https://aws.amazon.com/blogs/apn/transform-large-language-model-observability-with-langfuse/)) | diff --git a/components/home/img/ramp.svg b/components/home/img/ramp.svg new file mode 100644 index 0000000000..2121db7fca --- /dev/null +++ b/components/home/img/ramp.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/components/shared/EnterpriseLogoGrid.tsx b/components/shared/EnterpriseLogoGrid.tsx index b3b21127fa..5f609298bb 100644 --- a/components/shared/EnterpriseLogoGrid.tsx +++ b/components/shared/EnterpriseLogoGrid.tsx @@ -13,6 +13,7 @@ import khanacademyLogo from "../home/img/khan.svg"; import magicPatternsLogo from "../home/img/magic.svg"; import merckLogo from "../home/img/merck.svg"; import pigmentLogo from "../home/img/pigment.svg"; +import rampLogo from "../home/img/ramp.svg"; import rocketMoneyLogo from "../home/img/rocket-money.svg"; import samsaraLogo from "../home/img/samsara.svg"; import sumupLogo from "../home/img/sumup.svg"; @@ -99,6 +100,10 @@ const companies: CompanyLogo[] = [ name: "Rocket Money", logo: rocketMoneyLogo, }, + { + name: "Ramp", + logo: rampLogo, + }, ]; const LogoImage = ({ diff --git a/components/wrapped/Customers.tsx b/components/wrapped/Customers.tsx index 771f5a9f11..00fd90d261 100644 --- a/components/wrapped/Customers.tsx +++ b/components/wrapped/Customers.tsx @@ -19,6 +19,7 @@ import khanacademyLogo from "../home/img/khan.svg"; import magicPatternsLogo from "../home/img/magic.svg"; import merckLogo from "../home/img/merck.svg"; import pigmentLogo from "../home/img/pigment.svg"; +import rampLogo from "../home/img/ramp.svg"; import samsaraLogo from "../home/img/samsara.svg"; import sumupLogo from "../home/img/sumup.svg"; import telusLogo from "../home/img/telus.svg"; @@ -70,6 +71,10 @@ const companiesWithoutStories = [ name: "Intuit", logo: intuitLogo, }, + { + name: "Ramp", + logo: rampLogo, + }, { name: "Circleback", logo: circlebackLogo, @@ -248,6 +253,7 @@ export function Customers() { { type: "logo", name: "Twilio" }, { type: "logo", name: "Telus" }, { type: "logo", name: "Pigment" }, + { type: "logo", name: "Ramp" }, { type: "logo", name: "freee" }, { type: "story", name: "Khan Academy" }, { type: "logo", name: "Circleback" }, From 77ffd9b36fa71dfc64bfbcfec061df075ee7aaca Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Mon, 10 Aug 2026 17:09:59 +0000 Subject: [PATCH 2/2] Replace Expedia with Ramp in homepage logo grid MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Keep expedia.svg and comment out its import/usage so it can be restored later. Ramp takes Expedia's slot to preserve a full 6×2 grid. Co-authored-by: annabellscha --- components/shared/EnterpriseLogoGrid.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/components/shared/EnterpriseLogoGrid.tsx b/components/shared/EnterpriseLogoGrid.tsx index 5f609298bb..5acaa054bf 100644 --- a/components/shared/EnterpriseLogoGrid.tsx +++ b/components/shared/EnterpriseLogoGrid.tsx @@ -6,7 +6,7 @@ import { motion, useReducedMotion } from "framer-motion"; import canvaLogo from "../home/img/canva.svg"; import circlebackLogo from "../home/img/circleback.svg"; import ciscoLogo from "../home/img/cisco.svg"; -import expediaGroupLogo from "../home/img/expedia.svg"; +// import expediaGroupLogo from "../home/img/expedia.svg"; import freeeLogo from "../home/img/freee.svg"; import intuitLogo from "../home/img/intuit.svg"; import khanacademyLogo from "../home/img/khan.svg"; @@ -92,18 +92,18 @@ const companies: CompanyLogo[] = [ name: "Cisco", logo: ciscoLogo, }, + // { + // name: "Expedia Group", + // logo: expediaGroupLogo, + // }, { - name: "Expedia Group", - logo: expediaGroupLogo, + name: "Ramp", + logo: rampLogo, }, { name: "Rocket Money", logo: rocketMoneyLogo, }, - { - name: "Ramp", - logo: rampLogo, - }, ]; const LogoImage = ({