import { ReactNode } from 'react' import { Box, Heading, Text, Stack, Container, useColorModeValue, } from '@chakra-ui/react' import { useRouter } from 'next/router' const Testimonial = ({ children }: { children: ReactNode }) => { return {children} } const TestimonialContent = ({ children }: { children: ReactNode }) => { return ( {children} ) } const TestimonialHeading = ({ children }: { children: ReactNode }) => { return ( {children} ) } export default function MessageMap() { const { locale = 'it' } = useRouter() return ( {locale == 'it' ? 'I Nostri Motti' : 'Our Catchphrases'} {locale == 'it' ? 'Quello per cui lavoriamo ogni giorno...' : 'What we work for every day...'} {locale == 'it' ? 'Safara. Il sentiero che ci ha portato qui!' : 'Safara. the path that led us here!'} {locale == 'it' ? 'Safara espone e vende i tuoi pezzi di storia... e nel frattempo fa cultura, intrattenimento' : 'Safara exposes and sells your pieces of history... and meanwhile does culture, entertainment'} ) }