import { Navbar } from '..' import Head from 'next/head' import { useTheGraph } from '../../hooks/useTheGraph' export default function Layout(props: any) { const walletAddress = "0x369551e7c1d29756e18ba4ed7f85f2e6663e1e8d" const data = useTheGraph(walletAddress) return ( <> zkAuth
{props.children}
) }