mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-09 20:12:10 +10:00
* feat: small library tweaks + company page * feat: new store view * fix: ci merge error * feat: add genres to store page * feat: sorting * feat: lock game/version imports while their tasks are running * feat: feature games * feat: tag based filtering * fix: make tags alphabetical * refactor: move a bunch of i18n to common * feat: add localizations for everything * fix: title description on panel * fix: feature carousel text * fix: i18n footer strings * feat: add tag page * fix: develop merge * feat: offline games support (don't error out if provider throws) * feat: tag management * feat: show library next to game import + small fixes * feat: most of the company and tag managers * feat: company text field editing * fix: small fixes + tsgo experiemental * feat: upload icon and banner * feat: store infinite scrolling and bulk import mode * fix: lint * fix: add drop-base to prettier ignore
49 lines
1.3 KiB
Vue
49 lines
1.3 KiB
Vue
<!-- eslint-disable vue/no-v-html -->
|
|
<template>
|
|
<div class="w-full overflow-x-hidden">
|
|
<div class="relative overflow-hidden bg-zinc-900">
|
|
<!-- Decorative background image and gradient -->
|
|
<div aria-hidden="true" class="absolute inset-0">
|
|
<div class="absolute inset-0 overflow-hidden">
|
|
<img alt="" class="size-full object-cover" />
|
|
</div>
|
|
<div class="absolute inset-0 bg-zinc-900/75" />
|
|
<div class="absolute inset-0 bg-linear-to-t from-zinc-900" />
|
|
</div>
|
|
|
|
<!-- Callout -->
|
|
<section
|
|
aria-labelledby="sale-heading"
|
|
class="relative mx-auto flex max-w-7xl flex-col items-center px-4 pt-32 pb-8 text-center sm:px-6 lg:px-8"
|
|
>
|
|
<div class="mx-auto max-w-2xl lg:max-w-none">
|
|
<h2
|
|
id="sale-heading"
|
|
class="text-4xl font-bold font-display tracking-tight text-zinc-100 sm:text-5xl lg:text-6xl"
|
|
>
|
|
{{ tag.name }}
|
|
</h2>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
<StoreView
|
|
:prefilled="{
|
|
tags: {
|
|
[tag.id]: true,
|
|
} as any,
|
|
}"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const route = useRoute();
|
|
const tagId = route.params.id;
|
|
|
|
const { tag } = await $dropFetch(`/api/v1/tags/${tagId}`);
|
|
|
|
useHead({
|
|
title: tag.name,
|
|
});
|
|
</script>
|