2
0
Files
bot/apps/landing-page/app/blog/page.tsx
younesbenallal a1da5f2cd4 📝 Add "Top 5 Alternatives to Landbot" article
Co-authored-by: Baptiste Arnaud <contact@baptiste-arnaud.fr>
Co-authored-by: Baptiste Arnaud <baptiste.arnaud95@gmail.com>
2024-04-22 16:04:59 +02:00

15 lines
414 B
TypeScript

import { getBlogPosts } from '@/app/db/blog'
import { Posts } from './Posts'
export const metadata = {
title: 'Typebot Blog',
description:
'The official Typebot blog where we share our thoughts and tips on everything related to chatbots, conversational marketing, customer support and more.',
}
export default function Home() {
const allBlogs = getBlogPosts()
return <Posts allBlogs={allBlogs} />
}