Skip to content

Commit

Permalink
Merge pull request #105 from codigoencasa/docs/quick
Browse files Browse the repository at this point in the history
docs: add meta uses cases
  • Loading branch information
leifermendez authored Apr 3, 2024
2 parents ead69ab + b5d4378 commit f6cda1d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/pages/_app.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,16 @@ export default function App({ Component, pageProps }) {
property="og:image"
content={'https://builderbot.vercel.app/api/og?title='+pageProps?.title }
/>
<meta property="og:image:secure_url" content={'https://builderbot.vercel.app/api/og?title='+pageProps?.title } />
<meta name="twitter:image" content={'https://builderbot.vercel.app/api/og?title='+pageProps?.title }/>

</> : <></>}

<title>{`${pageProps?.title || 'Documentation'} - BuilderBot.app Chatbot for Whatsapp, Telegram and more`}</title>
<meta property="og:image" content={pageProps?.ogImage ?? 'https://builderbot.vercel.app/assets/og-image-v4.png'}/>
<meta property="og:image:secure_url" content="https://builderbot.vercel.app/assets/og-image-v4.png" />
<meta name="twitter:image" content="https://builderbot.vercel.app/assets/og-image-v4.png"/>

</>
)}

Expand All @@ -42,8 +50,6 @@ export default function App({ Component, pageProps }) {
<meta property="og:type" content="website"/>
<meta property="og:title" content={pageProps?.title} />
<meta property="og:description" content={pageProps.description}/>
<meta property="og:image" content={pageProps?.ogImage ?? 'https://builderbot.vercel.app/assets/og-image-v4.png'}/>
<meta property="og:image:secure_url" content="https://builderbot.vercel.app/assets/og-image-v4.png" />
<meta property="og:image:width" content="1200"></meta>
<meta property="og:image:height" content="630"></meta>
<meta property="og:image:type" content="image/png"></meta>
Expand All @@ -52,7 +58,6 @@ export default function App({ Component, pageProps }) {
<meta property="twitter:url" content="https://builderbot.app/"/>
<meta name="twitter:title" content="builderbot.app - a powerful workflow automation tool"/>
<meta name="twitter:description" content="Get started with BuilderBot - a free and open source framework with an intuitive and extensible way to create chatbot and smart apps that connect to different communication channels like Whatsapp, Telegram and others. We have made an intuitive framework so you can have your first chatbot in minutes"/>
<meta name="twitter:image" content="https://builderbot.vercel.app/assets/og-image-v4.png"/>

</Head>
<MDXProvider components={mdxComponents}>
Expand Down
15 changes: 15 additions & 0 deletions src/pages/en/providers/meta/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,21 @@ You can get more information about deploying a [Meta Bot](/deploy/meta)

---

## Uses Cases

If you want to give a quick overview of all the options that this provider allows you to implement in conjunction with builderbot you can go through the use cases, where in code we show some of the most important features of this provider.
Cases such as sending buttons, lists, or native methods directly with Meta
<div className="not-prose aling-block">
<Button
href="/providers/meta/uses-cases"
variant="text"
arrow="right"
children="More info about Meta uses cases"
/>
</div>

---

## Video

If you are one of those people who prefer to watch videos, here is a short tutorial on how to implement the Meta base.
Expand Down

0 comments on commit f6cda1d

Please sign in to comment.