import { FC } from "react"; import { Flex, VStack, Button, Link } from "@chakra-ui/react"; import Head from "next/head"; import Header from "./Header"; import Footer from "./Footer"; type Props = { customTitle?: string [key: string]: any }; const title = "Lingva Translate"; const Layout: FC = ({ customTitle, children }) => ( <> {customTitle ?? title}
{children}