import React from 'react' import { Box, Heading, Image, Text, Container, VStack, SimpleGrid, Flex, } from '@chakra-ui/react' import { getDatabase } from '../../lib/notion' import { DatePropertyValue, Page, RichText, RichTextPropertyValue, TitlePropertyValue, } from '@notionhq/client/build/src/api-types' import { NotionText } from 'notion-blocks-chakra-ui' import { Footer } from 'components/common/Footer' import { Navbar } from 'components/common/Navbar/Navbar' import { NextChakraLink } from 'components/common/nextChakraAdapters/NextChakraLink' import { SocialMetaTags } from 'components/common/SocialMetaTags' const ArticleList = ({ posts }: { posts: Page[] }) => { return ( <> Blog Keep up to date with the latest news related to Typebot. Learn about conversationnal forms and how to convert more. {posts.map((post) => ( ))}