Add og image for experiments (#100)

* Add og image for experiments

* Update meta tags

* Fix prettier

* Add key to meta tags

* Remove ngrok from og:image
This commit is contained in:
arcticfly
2023-07-31 16:50:15 -07:00
committed by GitHub
parent 26b6fa4f0c
commit 51d64baae9
10 changed files with 340 additions and 51 deletions

View File

@@ -21,6 +21,14 @@ const MyApp: AppType<{ session: Session | null }> = ({
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"
/>
<meta name="og:title" content="OpenPipe: Open-Source Lab for LLMs" key="title" />
<meta
name="og:description"
content="OpenPipe is a powerful playground for quickly optimizing performance, cost, and speed across models."
/>
<meta name="og:image" content="/og.png" key="og-image" />
<meta property="og:image:height" content="630" />
<meta property="og:image:width" content="1200" />
</Head>
<SessionProvider session={session}>
<SyncAppStore />