Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ENG-1064] Fix typos and grammatical errors in landing page #2502

Merged
merged 2 commits into from
Aug 24, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions bifrost/components/templates/landing/faqs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,12 @@ const FAQS = [
{
question: "Is there an impact to the latency of the calls to LLM?",
answer:
"Helicone Proxies your requests through globally distributed nodes running on Cloudfare Workers. This means that the latency is minimal and the requests are routed to the closest server to the end user.",
"Helicone proxies your requests through globally distributed nodes running on Cloudflare Workers. This means that the latency is minimal and the requests are routed to the closest server to the end user.",
},
{
question: "I don't want to use Helicon's Proxy, can I still use Helicone?",
question: "I don't want to use Helicone's Proxy, can I still use Helicone?",
answer:
"Yes, you can use still use Helicone to log your requests using the Helicone SDK's Async Integration without proxying..",
"Yes, you can still use Helicone to log your requests using the Helicone SDK's Async Integration without proxying.",
},
];

4 changes: 2 additions & 2 deletions bifrost/components/templates/landing/features.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default function Features() {
const FEATURES = [
{
title: "Prompts",
description: "Moniter prompt versioning.",
description: "Monitor prompt versioning.",
href: "https://docs.helicone.ai/features/prompts#prompts-and-experiments",
},
{
Expand Down Expand Up @@ -79,7 +79,7 @@ const FEATURES = [
},
{
title: "Rate Limiting",
description: "Easyily rate limit your users.",
description: "Easily rate limit your users.",
href: "https://docs.helicone.ai/features/advanced-usage/custom-rate-limits",
},
{
Expand Down
1 change: 0 additions & 1 deletion bifrost/components/templates/landing/integrations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { ArrowUpRightIcon, ClipboardIcon } from "@heroicons/react/24/outline";
import Image from "next/image";
import { useRouter } from "next/router";
import { useState } from "react";
import { text } from "stream/consumers";

interface IntegrationsProps {}

Expand Down
4 changes: 2 additions & 2 deletions bifrost/components/templates/landing/opensource.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ export default function OpenSource() {
<div className="flex flex-col self-start items-start px-6 gap-2 text-left">
<h3 className="text-lg font-bold">Deploy on-prem</h3>
<p className="text-sm text-gray-400">
Cloud-host or deploy on-prem with our production-ready HELM chart
for maximum security. Chat with us about other options.
Cloud-host or deploy on-premises with our production-ready HELM chart
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

don't do that. keep it as on-prem

for maximum security. Contact us for more options.
</p>

<Link
Expand Down
4 changes: 2 additions & 2 deletions bifrost/components/templates/landing/platform.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export default function Platform() {
<div className="flex flex-col w-full items-center px-2">
<h2 className="text-3xl md:text-4xl font-bold text-black md:text-center text-start tracking-tight leading-tight">
One platform with{" "}
<span className="text-sky-500">all the essentials tools.</span>
<span className="text-sky-500">all the essential tools.</span>
</h2>

<div className="flex flex-col md:justify-stretch md:flex-row items-start gap-4 md:mt-16 mt-4 ">
Expand Down Expand Up @@ -139,7 +139,7 @@ export default function Platform() {
Instant Analytics
</h3>
<p className="relative md:top-[-2em] md:mb-[-2em] top-[-3em] md:mr-5 mr-3 pt-3 pr-1 bg-gradient-to-t from-white via-white/90 text-gray-500 w-full">
Get detailed metrics such as latency, cost, time to first tokens
Get detailed metrics such as latency, cost, time to first token
</p>
</div>
</div>
Expand Down
Loading