mirror of
https://github.com/Drop-OSS/drop.git
synced 2026-01-31 15:37:09 +01:00
20 lines
463 B
Vue
20 lines
463 B
Vue
<template>
|
|
<div class="px-12 py-4">
|
|
<h1 class="text-zinc-100 text-2xl font-bold font-display">
|
|
Newly added
|
|
</h1>
|
|
<NuxtLink class="text-blue-600 font-semibold">Explore more →</NuxtLink>
|
|
<div class="mt-4 grid grid-cols-8 gap-8">
|
|
<GamePanel v-for="i in 8" :game="games[i - 1]" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
useHead({
|
|
title: "Home",
|
|
});
|
|
|
|
const games = await $fetch("/api/v1/games/front");
|
|
</script>
|