diff --git a/bifrost/app/page.tsx b/bifrost/app/page.tsx index 53cf4f39af..6ea4b55a54 100644 --- a/bifrost/app/page.tsx +++ b/bifrost/app/page.tsx @@ -1,27 +1,23 @@ import Enterprise from "@/components/templates/landing/enterprise"; import Integrations from "@/components/templates/landing/integrations"; import Platform from "@/components/templates/landing/platform"; -import { - CheckCircleIcon, - ChevronRightIcon, - CodeBracketSquareIcon, - ShieldCheckIcon, - UserGroupIcon, -} from "@heroicons/react/24/outline"; -import Head from "next/head"; +import FAQ from "@/components/templates/landing/faq" +import { FaChevronRight, FaCheck } from "react-icons/fa6"; import Image from "next/image"; import Link from "next/link"; +import Essentials from "@/components/templates/landing/essentials"; +import OpenSource from "@/components/templates/landing/openSource"; export default function Home() { return ( <>
-
+
Backed by{" "} {" "} Combinator -

- LLM-Observability for{" "} +

+ LLM Observability for{" "} Developers

-

- The open-source platform for logging, monitoring, and debugging. +

+ The open-source platform for logging, monitoring and debugging.

-
+
Get a demo Start Building - +
-
    +
    • - - - Sub-millisecond latency impact + + + industry-leading query time
    • - - 100% log coverage + + sub-millisecond latency
    • - - - Industry-leading query times + + + 100% log coverage
    @@ -140,36 +136,50 @@ export default function Home() {
-

+

Ready for real production workloads

-
    +

    + Trusted by thousands of companies and developers +

    +
    • -
      {"1,000"}
      -
      +
      + {"1,000"}
      +
      Requests processed per second
    • -
      {"1.2 Billion"}
      -
      - Total Requests Logged +
      + {"1.2 Billion"}
      +
      + Total requests Logged
    • -
      99.99%
      -
      Uptime
      +
      + 99.99%
      +
      Uptime
    -
      +
        +
      • + {"QAWolf"} +
      • {"QAWolf"}
      • {"Mintlify"}
      • {"Greptile"} +
      • + {"Sunrun"} +
      • +
      • + {"Lex"} +
      • +
      • + {"Connect"}
      -
-
-

- Send your first event in{" "} +
+

+ Send your first events in{" "} seconds

-

+

Get started with your preferred integration and provider.

+

+ Get started with your favorite provider and programming language. +

+ Don't see your model? Let us know by

creating an issue on Github

!

-
-

- One observability platform,{" "} - everything you need -

- +
+
+

Unified {" "} + observability and monitoring +

+

+ We are building a platform that provides all the essential tools for observability in Gen AI. +

+
+
-
+

Get to production-quality{" "} faster @@ -236,81 +278,54 @@ export default function Home() {

-
-
-
-
-
-

Developer

-

- Fully Open-Source -

-

- We believe in the power of community and the importance of - transparency. Helicone is fully open-source and available - for anyone to use. -

-
    -
  • -
    - -
    -
    -

    - Interested in deploying Helicone on-prem? -

    - - Get in touch - - -
    -
  • -
  • -
    - -
    -
    -

    - Want to ask the team a question? -

    - - Join our discord server - - -
    -
  • -
  • -
    - -
    -
    -

    - Want to contribute or star us on Github? -

    - - Check us out - - -
    -
  • -
-
-
+
+

+ No packages, just{" "} + headers +

+ +
+
+
+

Frequently asked questions

+ +
+
+
+
+

Frequently asked questions

+ +
+
+
+
+ +
+
+
+

Starting with Helicone is simple, free and fun.

+

Join users from all over the planet that used Helicone to supercharge their AI workflow.

+
+
+ +
+
+ +
diff --git a/bifrost/components/layout/footer.tsx b/bifrost/components/layout/footer.tsx index 97750783e7..76aa63b908 100644 --- a/bifrost/components/layout/footer.tsx +++ b/bifrost/components/layout/footer.tsx @@ -2,92 +2,145 @@ import Link from "next/link"; import { SVGProps } from "react"; import Image from "next/image"; -interface FooterProps {} +interface FooterProps { } const meta = { social: [ { name: "Twitter", href: "https://twitter.com/helicone_ai", - icon: (props: JSX.IntrinsicAttributes & SVGProps) => ( - - - - ), - }, - { - name: "GitHub", - href: "https://github.com/Helicone/helicone", - icon: (props: JSX.IntrinsicAttributes & SVGProps) => ( - - - - ), }, { name: "Discord", href: "https://discord.gg/2TkeWdXNPQ", - icon: (props: JSX.IntrinsicAttributes & SVGProps) => ( -
- Discord -
- ), }, + { + name: "LinkedIn", + href: "https://www.linkedin.com/company/helicone/", + }, + ], }; +const integrations = [ + { + name: "Open AI" + }, + { + name: "Azure" + }, + { + name: "Anthropic" + }, + { + name: "Gemini" + }, + { + name: "Anyscale" + }, + { + name: "Together AI" + }, + { + name: "Groq" + }, + { + name: "OpenRouter" + }, + { + name: "LiteLLM" + }, + { + name: "Gateway" + }, +] + +const versus = [ + { + name: "Helicone vs. LangSmith" + }, + { + name: "Helicone vs. DataDog" + }, + { + name: "Helicone vs. W&B" + }, +] + +const learnMore = [ + { + name: "Documentation" + }, + { + name: "Pricing" + }, + { + name: "Community" + }, + { + name: "Blog" + }, + { + name: "Contact" + }, +] + const Footer = (props: FooterProps) => { - const {} = props; + const { } = props; return ( -