2021-04-12 13:05:09 -05:00
|
|
|
import Layout from '../components/layout'
|
2021-04-14 18:56:29 -05:00
|
|
|
import Items from '../components/items'
|
2021-04-12 13:05:09 -05:00
|
|
|
|
|
|
|
export default function Index () {
|
|
|
|
return (
|
|
|
|
<Layout>
|
2021-06-22 12:47:49 -05:00
|
|
|
<Items variables={{ sort: 'hot' }} rank />
|
2021-04-12 13:05:09 -05:00
|
|
|
</Layout>
|
|
|
|
)
|
|
|
|
}
|