import React from 'react' import Head from 'next/head' import Link from 'next/link' import { logout } from '../utils/auth' import { getRandomSlogan } from '../utils/misc' const Layout = ({ children }) => { const title = getRandomSlogan() return {title} {/* https://www.flaticon.com/packs/zoo-20 */}
{children}
{/* language=CSS */}
} export default Layout