|
| 1 | +"use client"; |
| 2 | +import { HoverEffect } from "components/card-hover-effect"; |
| 3 | +import Particles from "components/particles"; |
| 4 | +import Balance from "react-wrap-balancer"; |
| 5 | +export const projects = [ |
| 6 | + { |
| 7 | + title: "Observability", |
| 8 | + description: ( |
| 9 | + <div> |
| 10 | + <div className="text-sm mb-2"> |
| 11 | + <b>Logging</b>: Keep track of all requests for monitoring and |
| 12 | + debugging. |
| 13 | + </div> |
| 14 | + <span className="text-sm"> |
| 15 | + <b>Requests Tracing</b>: Understand the journey of each request for |
| 16 | + optimization. |
| 17 | + </span> |
| 18 | + </div> |
| 19 | + ), |
| 20 | + }, |
| 21 | + { |
| 22 | + title: "Usage monitoring", |
| 23 | + description: "Track and analyze usage, requests, tokens, cache, and more.", |
| 24 | + }, |
| 25 | + { |
| 26 | + title: "Performance monitoring", |
| 27 | + description: |
| 28 | + "Understand how much users, requests and models are costing you.", |
| 29 | + }, |
| 30 | + { |
| 31 | + title: "LLM optimization", |
| 32 | + description: "Easily add remote cache, rate limits, and auto retries.", |
| 33 | + }, |
| 34 | + { |
| 35 | + title: "API key Managment", |
| 36 | + description: |
| 37 | + "Keep your primary credentials away. Can be easily revoked or renewed for better access control", |
| 38 | + }, |
| 39 | +]; |
| 40 | + |
| 41 | +export default function AIGateway() { |
| 42 | + return ( |
| 43 | + <section className="relative"> |
| 44 | + <div className="absolute left-1/2 -translate-x-1/2 top-0 -z-10 w-80 h-80 -mt-24 -ml-32"> |
| 45 | + <Particles |
| 46 | + className="absolute inset-0 -z-10" |
| 47 | + quantity={6} |
| 48 | + staticity={30} |
| 49 | + /> |
| 50 | + </div> |
| 51 | + |
| 52 | + <div |
| 53 | + className="absolute top-0 -translate-y-1/4 left-1/2 -translate-x-1/2 blur-2xl opacity-50 pointer-events-none -z-10" |
| 54 | + aria-hidden="true" |
| 55 | + > |
| 56 | + <svg xmlns="http://www.w3.org/2000/svg" width="434" height="427"> |
| 57 | + <defs> |
| 58 | + <linearGradient |
| 59 | + id="bs3-a" |
| 60 | + x1="19.609%" |
| 61 | + x2="50%" |
| 62 | + y1="14.544%" |
| 63 | + y2="100%" |
| 64 | + > |
| 65 | + <stop offset="0%" stopColor="#6366F1" /> |
| 66 | + <stop offset="100%" stopColor="#6366F1" stopOpacity="0" /> |
| 67 | + </linearGradient> |
| 68 | + </defs> |
| 69 | + <path |
| 70 | + fill="url(#bs3-a)" |
| 71 | + fillRule="evenodd" |
| 72 | + d="m410 0 461 369-284 58z" |
| 73 | + transform="matrix(1 0 0 -1 -410 427)" |
| 74 | + /> |
| 75 | + </svg> |
| 76 | + </div> |
| 77 | + <div className="max-w-6xl mx-auto px-4 sm:px-6 "> |
| 78 | + <div className="pt-16 md:pt-32 md:pb-32"> |
| 79 | + <div className="max-w-3xl mx-auto text-center pb-12 md:pb-20"> |
| 80 | + <h2 className="text-4xl md:text-4xl font-bold bg-clip-text text-transparent bg-gradient-to-b from-neutral-50 to-neutral-400 bg-opacity-50 pb-3 mb-4"> |
| 81 | + AI Gateway |
| 82 | + </h2> |
| 83 | + <Balance className="text-base text-neutral-300 mb-8 tracking-wide"> |
| 84 | + Missing studio AI gateway allow you gain visibility, control and |
| 85 | + insights about API Application uses. Track all your LLM requests |
| 86 | + transparently and conveys the insights needed to make data-driven |
| 87 | + decisions. |
| 88 | + </Balance> |
| 89 | + </div> |
| 90 | + |
| 91 | + <HoverEffect items={projects} /> |
| 92 | + </div> |
| 93 | + </div> |
| 94 | + </section> |
| 95 | + ); |
| 96 | +} |
0 commit comments