2
0
Files
bot/ee/apps/landing-page/app/blog/page.tsx

15 lines
414 B
TypeScript
Raw Normal View History

2024-04-19 13:20:58 +02:00
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.',
2024-04-19 13:20:58 +02:00
}
export default function Home() {
const allBlogs = getBlogPosts()
return <Posts allBlogs={allBlogs} />
}