|
| 1 | +--- |
| 2 | +import Layout from '~/layouts/PageLayout.astro'; |
| 3 | +import Hero from '~/components/widgets/Hero.astro'; |
| 4 | +import Features from '~/components/widgets/Features.astro'; |
| 5 | +import Steps from '~/components/widgets/Steps.astro'; |
| 6 | +import Content from '~/components/widgets/Content.astro'; |
| 7 | +import CallToAction from '~/components/widgets/CallToAction.astro'; |
| 8 | +import Logos from '~/components/widgets/Logos.astro'; |
| 9 | +
|
| 10 | +const metadata = { |
| 11 | + title: 'Trieve provides AI-native conversational discovery solutions for ecommerce', |
| 12 | + ignoreTitleTemplate: true, |
| 13 | +}; |
| 14 | +--- |
| 15 | + |
| 16 | +<meta property="og:title" content="Trieve" /> |
| 17 | +<meta property="og:site_name" content="" /> |
| 18 | +<meta property="og:url" content="https://search.trieve.ai" /> |
| 19 | +<meta property="og:description" content="" /> |
| 20 | +<meta property="og:type" content="" /> |
| 21 | +<meta property="og:image" content="https://cdn.trieve.ai/trieve-og.png" /> |
| 22 | +<script is:inline defer data-domain="trieve.ai" src="https://plausible.trieve.ai/js/script.js"></script> |
| 23 | + |
| 24 | +<Layout metadata={metadata}> |
| 25 | + <!-- Hero Widget ******************* --> |
| 26 | + |
| 27 | + <Hero |
| 28 | + actions={[ |
| 29 | + { |
| 30 | + variant: 'primary', |
| 31 | + text: 'Get Started Free', |
| 32 | + href: 'https://dashboard.trieve.ai', |
| 33 | + target: '_blank', |
| 34 | + icon: 'tabler:external-link', |
| 35 | + }, |
| 36 | + { |
| 37 | + variant: 'secondary', |
| 38 | + text: 'Request a demo', |
| 39 | + icon: 'tabler:presentation', |
| 40 | + href: '/request-demo', |
| 41 | + }, |
| 42 | + ]} |
| 43 | + > |
| 44 | + <Fragment slot="title"> Conversational Discovery for any Ecommerce Experience </Fragment> |
| 45 | + |
| 46 | + <Fragment slot="subtitle"> |
| 47 | + <span class="hidden sm:inline"> |
| 48 | + Discovery isn't just search and recommendations. Consumers coming from Google, Bing, and Perplexity all expect |
| 49 | + GenAI. <br /> |
| 50 | + </span> |
| 51 | + </Fragment> |
| 52 | + </Hero> |
| 53 | + |
| 54 | + <Logos |
| 55 | + title="Powering 30,000+ discovery experiences across categories" |
| 56 | + logos={[ |
| 57 | + { src: 'https://cdn.trieve.ai/customer-logos/mintlify-logo.svg' }, |
| 58 | + { src: 'https://cdn.trieve.ai/customer-logos/vapi-logo.png' }, |
| 59 | + { src: 'https://cdn.trieve.ai/customer-logos/guardant-health-logo.svg' }, |
| 60 | + { src: 'https://cdn.trieve.ai/customer-logos/bestway-logo.png' }, |
| 61 | + { src: 'https://cdn.trieve.ai/customer-logos/signoz-logo.svg' }, |
| 62 | + { src: 'https://cdn.trieve.ai/customer-logos/parcelhero.webp' }, |
| 63 | + { src: 'https://cdn.trieve.ai/customer-logos/billtrack50logo.svg' }, |
| 64 | + { src: 'https://cdn.trieve.ai/customer-logos/hostai-logo.webp' }, |
| 65 | + { src: 'https://cdn.trieve.ai/customer-logos/openmart-logo.svg' }, |
| 66 | + { src: 'https://cdn.trieve.ai/customer-logos/agentic-labs-logo.png' }, |
| 67 | + ]} |
| 68 | + /> |
| 69 | + |
| 70 | + <!-- Content Widget **************** --> |
| 71 | + |
| 72 | + <Content |
| 73 | + isReversed |
| 74 | + tagline="Build Fast and Don't Break Things" |
| 75 | + title="Manage ingestion, embeddings and analytics with ease" |
| 76 | + items={[ |
| 77 | + { |
| 78 | + title: 'Private Open-Source Models', |
| 79 | + description: 'We use open source embedding models and LLMs running in our own servers. Data is never leaked.', |
| 80 | + }, |
| 81 | + { |
| 82 | + title: 'Batteries Included', |
| 83 | + description: |
| 84 | + 'Our API surface covers chunking, ingestion, search, recommendations, RAG, and even a little front-end.', |
| 85 | + }, |
| 86 | + { |
| 87 | + title: 'Self-Hostable', |
| 88 | + description: |
| 89 | + 'Sensitive data? Need maximum performance? Host Trieve yourself with terraform templates and no external dependencies.', |
| 90 | + }, |
| 91 | + ]} |
| 92 | + image={{ |
| 93 | + src: 'https://cdn.trieve.ai/battery-4-square.png', |
| 94 | + alt: 'Visual of Trieve features', |
| 95 | + }} |
| 96 | + > |
| 97 | + <Fragment slot="content"> |
| 98 | + <h3 class="text-2xl font-bold tracking-tight sm:text-3xl mb-2">Built on the best foundations</h3> |
| 99 | + We help companies build unfair competitive advantages through their search, discovery, and RAG experiences |
| 100 | + </Fragment> |
| 101 | + |
| 102 | + <Fragment slot="bg"> |
| 103 | + <div class="absolute inset-0 bg-blue-50 dark:bg-transparent"></div> |
| 104 | + </Fragment> |
| 105 | + </Content> |
| 106 | + |
| 107 | + <!-- Steps Widget ****************** --> |
| 108 | + |
| 109 | + <Steps |
| 110 | + title="Set up industry-leading search in 30 minutes" |
| 111 | + items={[ |
| 112 | + { |
| 113 | + title: 'Step 1: <span class="font-medium">Add Existing Data</span>', |
| 114 | + description: |
| 115 | + 'Upload individual chunks or entire documents that get chunked by our algorithms via our API or no-code dashboard.', |
| 116 | + icon: 'tabler:database-export', |
| 117 | + }, |
| 118 | + { |
| 119 | + title: 'Step 2: <span class="font-medium">Integrate our API</em>', |
| 120 | + description: 'Add calls to our API on your create and update routes to keep your data current.', |
| 121 | + icon: 'tabler:git-merge', |
| 122 | + }, |
| 123 | + { |
| 124 | + title: 'Step 3: <span class="font-medium">Search, Recommend, or Generate</span>', |
| 125 | + description: |
| 126 | + 'Test and tune search, recommendations, and chat quality with our search playground, then integrate the API calls into your product.', |
| 127 | + icon: 'tabler:telescope', |
| 128 | + }, |
| 129 | + { |
| 130 | + title: 'Ready!', |
| 131 | + icon: 'tabler:check', |
| 132 | + }, |
| 133 | + ]} |
| 134 | + image={{ |
| 135 | + src: 'https://cdn.trieve.ai/db-4-square.png', |
| 136 | + alt: 'Steps to use', |
| 137 | + }} |
| 138 | + /> |
| 139 | + |
| 140 | + <!-- CallToAction Widget *********** --> |
| 141 | + |
| 142 | + <CallToAction |
| 143 | + actions={[ |
| 144 | + { |
| 145 | + variant: 'primary', |
| 146 | + text: 'Get Started Free', |
| 147 | + href: 'https://dashboard.trieve.ai', |
| 148 | + target: '_blank', |
| 149 | + icon: 'tabler:external-link', |
| 150 | + }, |
| 151 | + { |
| 152 | + variant: 'secondary', |
| 153 | + text: 'Request a demo', |
| 154 | + icon: 'tabler:presentation', |
| 155 | + href: '/request-demo', |
| 156 | + }, |
| 157 | + ]} |
| 158 | + > |
| 159 | + <Fragment slot="title">Take control of your search.</Fragment> |
| 160 | + |
| 161 | + <Fragment slot="subtitle">AI-native, end-to-end, self-hostable API for the trends of today and tomorrow</Fragment> |
| 162 | + </CallToAction> |
| 163 | +</Layout> |
0 commit comments