import React, { ReactNode } from 'react' import { Box, Container, Heading, HStack, SimpleGrid, Stack, Text, } from '@chakra-ui/react' import { NextChakraLink } from './nextChakraAdapters/NextChakraLink' import { Logo } from 'assets/icons/Logo' const facebookGroupUrl = 'https://www.facebook.com/groups/typebot' const typebotLinkedInUrl = 'https://www.linkedin.com/company/typebot' const typebotTwitterUrl = 'https://twitter.com/Typebot_io' const baptisteTwitterUrl = 'https://twitter.com/baptisteArno' export const contactUrl = 'https://bot.typebot.io/landing-page-bubble-en' export const roadmapLink = 'https://app.typebot.io/feedback' export const documentationLink = 'https://docs.typebot.io' export const githubRepoLink = 'https://github.com/baptisteArno/typebot.io' export const Footer = () => { return ( Typebot Made with ❤️ by{' '} @baptisteArno Product Documentation Roadmap Pricing Community GitHub repository Facebook Group Twitter LinkedIn Company Contact Terms of Service Privacy Policy ) } const ListHeader = ({ children }: { children: ReactNode }) => { return ( {children} ) }