mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-20 03:31:13 +10:00
* feat: database redist support * feat: rearchitecture of database schemas, migration reset, and #180 * feat: import redists * fix: giantbomb logging bug * feat: partial user platform support + statusMessage -> message * feat: add user platform filters to store view * fix: sanitize svg uploads ... copilot suggested this I feel dirty. * feat: beginnings of platform & redist management * feat: add server side redist patching * fix: update drop-base commit * feat: import of custom platforms & file extensions * fix: redelete platform * fix: remove platform * feat: uninstall commands, new R UI * checkpoint: before migrating to nuxt v4 * update to nuxt 4 * fix: fixes for Nuxt v4 update * fix: remaining type issues * feat: initial feedback to import other kinds of versions * working commit * fix: lint * feat: redist import
53 lines
1.3 KiB
Vue
53 lines
1.3 KiB
Vue
<template>
|
|
<div
|
|
:class="[
|
|
'border border-zinc-800 rounded-xl h-full px-6 py-4 relative bg-zinc-950/30',
|
|
{ 'min-h-50 pb-15': link, 'lg:pb-4': !link },
|
|
]"
|
|
>
|
|
<h1
|
|
v-if="props.title"
|
|
:class="[
|
|
'font-semibold text-lg w-full',
|
|
{ 'mb-3': !props.subtitle && link },
|
|
]"
|
|
>
|
|
{{ props.title }}
|
|
<div v-if="rightTitle" class="float-right">{{ props.rightTitle }}</div>
|
|
</h1>
|
|
<h2
|
|
v-if="props.subtitle"
|
|
:class="['text-zinc-400 text-sm w-full', { 'mb-3': link }]"
|
|
>
|
|
{{ props.subtitle }}
|
|
<div v-if="rightTitle" class="float-right">{{ props.rightTitle }}</div>
|
|
</h2>
|
|
|
|
<slot />
|
|
|
|
<div v-if="props.link" class="absolute bottom-5 right-5">
|
|
<NuxtLink
|
|
:to="props.link.url"
|
|
class="transition text-sm/6 font-semibold text-zinc-400 hover:text-zinc-100 inline-flex gap-x-2 items-center duration-200 hover:scale-105"
|
|
>
|
|
{{ props.link.label }}
|
|
<ArrowRightIcon class="h-4 w-4" aria-hidden="true" />
|
|
</NuxtLink>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ArrowRightIcon } from "@heroicons/vue/20/solid";
|
|
|
|
const props = defineProps<{
|
|
title?: string;
|
|
subtitle?: string;
|
|
rightTitle?: string;
|
|
link?: {
|
|
url: string;
|
|
label: string;
|
|
};
|
|
}>();
|
|
</script>
|