📄 Add Commercial License for ee folder (#1532)
This commit is contained in:
14
ee/apps/landing-page/app/blog/page.tsx
Normal file
14
ee/apps/landing-page/app/blog/page.tsx
Normal file
@ -0,0 +1,14 @@
|
||||
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} />
|
||||
}
|
Reference in New Issue
Block a user