- web/: Vue 3 + Vite + UnoCSS + Pinia, dark tactical theme (amber/#0d1117) - AppNav, ListingCard, SearchView with filters/sort, composables (useSnipeMode, useKonamiCode, useMotion), Pinia search store - Steal shimmer, auction countdown, Snipe Mode easter egg all native in Vue - docker/web/: nginx + multi-stage Dockerfile (node build → nginx serve) - compose.yml: api (8510) + web (8509) services - Dockerfile CMD updated to uvicorn for upcoming FastAPI layer - Clean build: 0 TS errors, 380 modules
55 lines
1.2 KiB
Vue
55 lines
1.2 KiB
Vue
<template>
|
|
<div class="listing-view">
|
|
<div class="placeholder">
|
|
<span class="placeholder__icon" aria-hidden="true">🎯</span>
|
|
<h1 class="placeholder__title">Listing Detail</h1>
|
|
<p class="placeholder__body">Coming soon — full listing detail view with trust score breakdown, photo analysis, and seller history.</p>
|
|
<RouterLink to="/" class="placeholder__back">← Back to Search</RouterLink>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { RouterLink } from 'vue-router'
|
|
</script>
|
|
|
|
<style scoped>
|
|
.listing-view {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 60dvh;
|
|
padding: var(--space-8);
|
|
}
|
|
|
|
.placeholder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: var(--space-4);
|
|
text-align: center;
|
|
max-width: 480px;
|
|
}
|
|
|
|
.placeholder__icon { font-size: 3rem; }
|
|
|
|
.placeholder__title {
|
|
font-family: var(--font-display);
|
|
font-size: 1.5rem;
|
|
color: var(--app-primary);
|
|
}
|
|
|
|
.placeholder__body {
|
|
color: var(--color-text-muted);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.placeholder__back {
|
|
color: var(--app-primary);
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
transition: opacity 150ms ease;
|
|
}
|
|
|
|
.placeholder__back:hover { opacity: 0.75; }
|
|
</style>
|