import React, { FC, Fragment } from "react"; import Link from "next/link"; export const Layout: FC = ({ children }) => { return ( {children} ); };