import React from 'react' import Head from 'next/head' import Hero from '~/components/hero' import Card from '~/components/card' Index.getInitialProps = async ({ctx})=>{ const {data: items} = await ctx.axios.get('/api/items') return {items} } export default function Index({items}){ return ( <> Society of Socks
{items.map(item=> )}
) }