mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-06 08:00:05 +00:00
Merge branch 'linear_mode' into comfy_vibe
This commit is contained in:
2
ComfyUI_vibe/src/components.d.ts
vendored
2
ComfyUI_vibe/src/components.d.ts
vendored
@@ -30,8 +30,6 @@ declare module 'vue' {
|
||||
LinearStepCard: typeof import('./components/linear/LinearStepCard.vue')['default']
|
||||
LinearTemplateCard: typeof import('./components/linear/LinearTemplateCard.vue')['default']
|
||||
LinearTemplateSelector: typeof import('./components/linear/LinearTemplateSelector.vue')['default']
|
||||
LinearTopBar: typeof import('./components/linear/LinearTopBar.vue')['default']
|
||||
LinearTopNavbar: typeof import('./components/linear/LinearTopNavbar.vue')['default']
|
||||
LinearWorkflowSidebar: typeof import('./components/linear/LinearWorkflowSidebar.vue')['default']
|
||||
LinearWorkspace: typeof import('./components/linear/LinearWorkspace.vue')['default']
|
||||
ModelsTab: typeof import('./components/v2/workspace/ModelsTab.vue')['default']
|
||||
|
||||
@@ -1,234 +1,215 @@
|
||||
<script setup lang="ts">
|
||||
import { ref, computed } from 'vue'
|
||||
import { useLinearModeStore } from '@/stores/linearModeStore'
|
||||
import type { LinearOutput } from '@/types/linear'
|
||||
|
||||
const store = useLinearModeStore()
|
||||
|
||||
const activeTab = ref<'queue' | 'history'>('queue')
|
||||
|
||||
const outputs = computed(() => store.outputs)
|
||||
const isGenerating = computed(() => store.isGenerating)
|
||||
const currentWorkflow = computed(() => store.currentWorkflow)
|
||||
|
||||
// Mock batches for demo - each batch is a generation session with multiple outputs
|
||||
const batches = ref([
|
||||
{
|
||||
id: 'batch-1',
|
||||
prompt: 'A mystical forest with glowing mushrooms and fairy lights, cinematic lighting, 8k',
|
||||
model: 'Gen-4 Turbo',
|
||||
duration: '5s',
|
||||
createdAt: '2 min ago',
|
||||
settings: { seed: 123456, steps: 30, cfg: 7.5 },
|
||||
outputs: [
|
||||
{ id: '1a', url: 'https://picsum.photos/seed/forest1/400/400', type: 'image' },
|
||||
{ id: '1b', url: 'https://picsum.photos/seed/forest2/400/400', type: 'image' },
|
||||
{ id: '1c', url: 'https://picsum.photos/seed/forest3/400/400', type: 'video' },
|
||||
{ id: '1d', url: 'https://picsum.photos/seed/forest4/400/400', type: 'image' },
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 'batch-2',
|
||||
prompt: 'Cyberpunk city at night with neon lights and rain reflections',
|
||||
model: 'Gen-4',
|
||||
duration: '10s',
|
||||
createdAt: '15 min ago',
|
||||
settings: { seed: 789012, steps: 25, cfg: 8 },
|
||||
outputs: [
|
||||
{ id: '2a', url: 'https://picsum.photos/seed/cyber1/400/400', type: 'video' },
|
||||
{ id: '2b', url: 'https://picsum.photos/seed/cyber2/400/400', type: 'image' },
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 'batch-3',
|
||||
prompt: 'Portrait of a woman with dramatic lighting, studio photography',
|
||||
model: 'Gen-4 Turbo',
|
||||
duration: '5s',
|
||||
createdAt: '1 hour ago',
|
||||
settings: { seed: 345678, steps: 30, cfg: 7 },
|
||||
outputs: [
|
||||
{ id: '3a', url: 'https://picsum.photos/seed/portrait1/400/400', type: 'image' },
|
||||
{ id: '3b', url: 'https://picsum.photos/seed/portrait2/400/400', type: 'image' },
|
||||
{ id: '3c', url: 'https://picsum.photos/seed/portrait3/400/400', type: 'image' },
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 'batch-4',
|
||||
prompt: 'Abstract fluid art in blue and gold, macro photography',
|
||||
model: 'Flash 2.5',
|
||||
duration: '5s',
|
||||
createdAt: '3 hours ago',
|
||||
settings: { seed: 901234, steps: 20, cfg: 6.5 },
|
||||
outputs: [
|
||||
{ id: '4a', url: 'https://picsum.photos/seed/abstract1/400/400', type: 'image' },
|
||||
],
|
||||
},
|
||||
])
|
||||
// Mock queue items
|
||||
const queueItems = computed(() => {
|
||||
if (!isGenerating.value || !currentWorkflow.value) return []
|
||||
|
||||
// Current generation progress
|
||||
const queueItem = computed(() => {
|
||||
if (!isGenerating.value || !currentWorkflow.value) return null
|
||||
|
||||
return {
|
||||
id: currentWorkflow.value.id,
|
||||
name: currentWorkflow.value.templateName,
|
||||
progress: store.executionProgress,
|
||||
}
|
||||
return [
|
||||
{
|
||||
id: currentWorkflow.value.id,
|
||||
name: currentWorkflow.value.templateName,
|
||||
status: 'running' as const,
|
||||
progress: store.executionProgress,
|
||||
currentStep: currentWorkflow.value.currentStepIndex + 1,
|
||||
totalSteps: currentWorkflow.value.steps.length,
|
||||
},
|
||||
]
|
||||
})
|
||||
|
||||
function copyPrompt(prompt: string): void {
|
||||
navigator.clipboard.writeText(prompt)
|
||||
function formatTime(date: Date): string {
|
||||
return new Intl.DateTimeFormat('en-US', {
|
||||
hour: '2-digit',
|
||||
minute: '2-digit',
|
||||
}).format(date)
|
||||
}
|
||||
|
||||
function deleteBatch(batchId: string): void {
|
||||
const index = batches.value.findIndex(b => b.id === batchId)
|
||||
if (index > -1) {
|
||||
batches.value.splice(index, 1)
|
||||
}
|
||||
function handleDownload(output: LinearOutput): void {
|
||||
const link = document.createElement('a')
|
||||
link.href = output.url
|
||||
link.download = output.filename
|
||||
document.body.appendChild(link)
|
||||
link.click()
|
||||
document.body.removeChild(link)
|
||||
}
|
||||
|
||||
function downloadAll(batchId: string): void {
|
||||
console.log('Download all from batch:', batchId)
|
||||
function handleDelete(outputId: string): void {
|
||||
store.deleteOutput(outputId)
|
||||
}
|
||||
|
||||
function reuseSettings(batchId: string): void {
|
||||
console.log('Reuse settings from batch:', batchId)
|
||||
function handleClearHistory(): void {
|
||||
store.clearOutputs()
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<!-- Main content area - Batch gallery of creations -->
|
||||
<!-- Main content area - takes remaining space -->
|
||||
<main class="flex h-full flex-1 flex-col bg-zinc-950">
|
||||
<div class="flex-1 overflow-y-auto">
|
||||
<!-- Currently Generating Batch -->
|
||||
<div v-if="queueItem" class="border-b border-zinc-800 p-6">
|
||||
<div class="mb-4 flex items-center gap-3">
|
||||
<div class="flex h-8 w-8 items-center justify-center rounded-lg bg-blue-600">
|
||||
<i class="pi pi-spin pi-spinner text-sm text-white" />
|
||||
<!-- Tabs -->
|
||||
<div class="flex border-b border-zinc-800">
|
||||
<button
|
||||
:class="[
|
||||
'flex-1 px-4 py-2.5 text-xs font-medium transition-colors',
|
||||
activeTab === 'queue'
|
||||
? 'border-b-2 border-blue-600 text-zinc-100'
|
||||
: 'text-zinc-500 hover:text-zinc-300'
|
||||
]"
|
||||
@click="activeTab = 'queue'"
|
||||
>
|
||||
Queue
|
||||
<span
|
||||
v-if="queueItems.length"
|
||||
class="ml-1.5 rounded-full bg-blue-600 px-1.5 py-0.5 text-[10px] text-white"
|
||||
>
|
||||
{{ queueItems.length }}
|
||||
</span>
|
||||
</button>
|
||||
<button
|
||||
:class="[
|
||||
'flex-1 px-4 py-2.5 text-xs font-medium transition-colors',
|
||||
activeTab === 'history'
|
||||
? 'border-b-2 border-blue-600 text-zinc-100'
|
||||
: 'text-zinc-500 hover:text-zinc-300'
|
||||
]"
|
||||
@click="activeTab = 'history'"
|
||||
>
|
||||
History
|
||||
<span
|
||||
v-if="outputs.length"
|
||||
class="ml-1.5 rounded bg-zinc-700 px-1.5 py-0.5 text-[10px] text-zinc-400"
|
||||
>
|
||||
{{ outputs.length }}
|
||||
</span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Queue View -->
|
||||
<div v-if="activeTab === 'queue'" class="flex-1 overflow-y-auto">
|
||||
<!-- Active Queue Items -->
|
||||
<div v-if="queueItems.length" class="p-3">
|
||||
<div
|
||||
v-for="item in queueItems"
|
||||
:key="item.id"
|
||||
class="rounded-lg border border-zinc-800 bg-zinc-800/50 p-3"
|
||||
>
|
||||
<div class="flex items-center justify-between">
|
||||
<div class="flex items-center gap-2">
|
||||
<div class="h-2 w-2 animate-pulse rounded-full bg-blue-500" />
|
||||
<span class="text-xs font-medium text-zinc-200">{{ item.name }}</span>
|
||||
</div>
|
||||
<span class="text-[10px] text-zinc-500">
|
||||
Step {{ item.currentStep }}/{{ item.totalSteps }}
|
||||
</span>
|
||||
</div>
|
||||
<div class="flex-1">
|
||||
<div class="text-sm font-medium text-zinc-200">Generating...</div>
|
||||
<div class="text-xs text-zinc-500">{{ Math.round(queueItem.progress) }}% complete</div>
|
||||
|
||||
<!-- Progress -->
|
||||
<div class="mt-2">
|
||||
<div class="h-1 overflow-hidden rounded-full bg-zinc-700">
|
||||
<div
|
||||
class="h-full rounded-full bg-blue-600 transition-all duration-300"
|
||||
:style="{ width: `${item.progress}%` }"
|
||||
/>
|
||||
</div>
|
||||
<div class="mt-1 text-right text-[10px] text-zinc-500">
|
||||
{{ Math.round(item.progress) }}%
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="h-1.5 overflow-hidden rounded-full bg-zinc-800">
|
||||
<div
|
||||
class="h-full rounded-full bg-blue-500 transition-all duration-300"
|
||||
:style="{ width: `${queueItem.progress}%` }"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Batch Sections -->
|
||||
<!-- Empty Queue -->
|
||||
<div
|
||||
v-for="batch in batches"
|
||||
:key="batch.id"
|
||||
class="border-b border-zinc-800 p-6"
|
||||
v-else
|
||||
class="flex flex-col items-center justify-center py-12 text-zinc-500"
|
||||
>
|
||||
<!-- Batch Header -->
|
||||
<div class="mb-4 flex items-start justify-between gap-4">
|
||||
<div class="min-w-0 flex-1">
|
||||
<!-- Prompt -->
|
||||
<p class="text-sm leading-relaxed text-zinc-200">
|
||||
{{ batch.prompt }}
|
||||
</p>
|
||||
<!-- Meta Info -->
|
||||
<div class="mt-2 flex flex-wrap items-center gap-3 text-[11px] text-zinc-500">
|
||||
<span class="flex items-center gap-1">
|
||||
<i class="pi pi-box text-[10px]" />
|
||||
{{ batch.model }}
|
||||
</span>
|
||||
<span class="flex items-center gap-1">
|
||||
<i class="pi pi-clock text-[10px]" />
|
||||
{{ batch.duration }}
|
||||
</span>
|
||||
<span class="flex items-center gap-1">
|
||||
<i class="pi pi-history text-[10px]" />
|
||||
{{ batch.createdAt }}
|
||||
</span>
|
||||
<span class="text-zinc-600">•</span>
|
||||
<span class="text-zinc-600">
|
||||
Seed: {{ batch.settings.seed }} · Steps: {{ batch.settings.steps }} · CFG: {{ batch.settings.cfg }}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<i class="pi pi-clock mb-2 text-2xl" />
|
||||
<span class="text-xs">Queue is empty</span>
|
||||
<p class="mt-1 text-center text-[10px] text-zinc-600">
|
||||
Generated images will appear here
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Action Buttons -->
|
||||
<div class="flex shrink-0 items-center gap-1">
|
||||
<button
|
||||
v-tooltip.bottom="'Copy prompt'"
|
||||
class="flex h-8 w-8 items-center justify-center rounded-lg text-zinc-500 transition-colors hover:bg-zinc-800 hover:text-zinc-200"
|
||||
@click="copyPrompt(batch.prompt)"
|
||||
>
|
||||
<i class="pi pi-copy text-sm" />
|
||||
</button>
|
||||
<button
|
||||
v-tooltip.bottom="'Reuse settings'"
|
||||
class="flex h-8 w-8 items-center justify-center rounded-lg text-zinc-500 transition-colors hover:bg-zinc-800 hover:text-zinc-200"
|
||||
@click="reuseSettings(batch.id)"
|
||||
>
|
||||
<i class="pi pi-replay text-sm" />
|
||||
</button>
|
||||
<button
|
||||
v-tooltip.bottom="'Download all'"
|
||||
class="flex h-8 w-8 items-center justify-center rounded-lg text-zinc-500 transition-colors hover:bg-zinc-800 hover:text-zinc-200"
|
||||
@click="downloadAll(batch.id)"
|
||||
>
|
||||
<i class="pi pi-download text-sm" />
|
||||
</button>
|
||||
<button
|
||||
v-tooltip.bottom="'Delete batch'"
|
||||
class="flex h-8 w-8 items-center justify-center rounded-lg text-zinc-500 transition-colors hover:bg-zinc-800 hover:text-red-400"
|
||||
@click="deleteBatch(batch.id)"
|
||||
>
|
||||
<i class="pi pi-trash text-sm" />
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<!-- History View -->
|
||||
<div v-else class="flex flex-1 flex-col overflow-hidden">
|
||||
<!-- History Header -->
|
||||
<div
|
||||
v-if="outputs.length"
|
||||
class="flex items-center justify-between border-b border-zinc-800 px-3 py-2"
|
||||
>
|
||||
<span class="text-[10px] text-zinc-500">{{ outputs.length }} generations</span>
|
||||
<button
|
||||
class="text-[10px] text-zinc-500 transition-colors hover:text-red-400"
|
||||
@click="handleClearHistory"
|
||||
>
|
||||
Clear all
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Outputs Grid -->
|
||||
<div class="flex flex-wrap gap-4">
|
||||
<!-- History Grid -->
|
||||
<div v-if="outputs.length" class="flex-1 overflow-y-auto p-4">
|
||||
<div class="grid grid-cols-2 gap-3 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 xl:grid-cols-6">
|
||||
<div
|
||||
v-for="output in batch.outputs"
|
||||
v-for="output in outputs"
|
||||
:key="output.id"
|
||||
class="group relative h-48 w-48 cursor-pointer overflow-hidden rounded-xl bg-zinc-900 transition-all hover:ring-2 hover:ring-blue-500/50"
|
||||
class="group relative aspect-square overflow-hidden rounded-lg bg-zinc-800"
|
||||
>
|
||||
<img
|
||||
:src="output.url"
|
||||
:alt="batch.prompt"
|
||||
class="h-full w-full object-cover transition-transform duration-300 group-hover:scale-105"
|
||||
:src="output.thumbnailUrl ?? output.url"
|
||||
:alt="output.filename"
|
||||
class="h-full w-full object-cover transition-transform group-hover:scale-105"
|
||||
/>
|
||||
|
||||
<!-- Video indicator -->
|
||||
<div
|
||||
v-if="output.type === 'video'"
|
||||
class="absolute left-2 top-2 flex h-5 w-5 items-center justify-center rounded-full bg-black/70"
|
||||
>
|
||||
<i class="pi pi-play text-[8px] text-white" />
|
||||
</div>
|
||||
|
||||
<!-- Hover Overlay -->
|
||||
<div class="absolute inset-0 flex items-center justify-center bg-black/50 opacity-0 transition-opacity group-hover:opacity-100">
|
||||
<div class="flex gap-1">
|
||||
<button class="flex h-7 w-7 items-center justify-center rounded-full bg-white/20 text-white backdrop-blur-sm transition-colors hover:bg-white/30">
|
||||
<i class="pi pi-eye text-xs" />
|
||||
</button>
|
||||
<button class="flex h-7 w-7 items-center justify-center rounded-full bg-white/20 text-white backdrop-blur-sm transition-colors hover:bg-white/30">
|
||||
<i class="pi pi-download text-xs" />
|
||||
<div
|
||||
class="absolute inset-0 flex flex-col justify-between bg-gradient-to-t from-black/80 via-transparent to-black/40 p-2 opacity-0 transition-opacity group-hover:opacity-100"
|
||||
>
|
||||
<div class="flex justify-end">
|
||||
<button
|
||||
class="flex h-6 w-6 items-center justify-center rounded bg-black/50 text-zinc-300 transition-colors hover:bg-red-600 hover:text-white"
|
||||
@click="handleDelete(output.id)"
|
||||
>
|
||||
<i class="pi pi-trash text-[10px]" />
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div class="flex items-center justify-between">
|
||||
<span class="text-[10px] text-zinc-300">
|
||||
{{ formatTime(output.createdAt) }}
|
||||
</span>
|
||||
<button
|
||||
class="flex h-6 w-6 items-center justify-center rounded bg-black/50 text-zinc-300 transition-colors hover:bg-blue-600 hover:text-white"
|
||||
@click="handleDownload(output)"
|
||||
>
|
||||
<i class="pi pi-download text-[10px]" />
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Empty State -->
|
||||
<!-- Empty History -->
|
||||
<div
|
||||
v-if="batches.length === 0 && !queueItem"
|
||||
class="flex h-full flex-col items-center justify-center p-12 text-zinc-500"
|
||||
v-else
|
||||
class="flex flex-1 flex-col items-center justify-center text-zinc-500"
|
||||
>
|
||||
<div class="flex h-20 w-20 items-center justify-center rounded-2xl bg-zinc-900">
|
||||
<i class="pi pi-images text-3xl" />
|
||||
</div>
|
||||
<h3 class="mt-4 text-sm font-medium text-zinc-300">No creations yet</h3>
|
||||
<p class="mt-1 text-center text-xs text-zinc-600">
|
||||
Your generated images and videos will appear here
|
||||
<i class="pi pi-images mb-2 text-2xl" />
|
||||
<span class="text-xs">No history yet</span>
|
||||
<p class="mt-1 text-center text-[10px] text-zinc-600">
|
||||
Your creations will appear here
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -39,6 +39,7 @@ function selectTab(tab: LinearTab): void {
|
||||
@click="selectTab(tab.id)"
|
||||
>
|
||||
<i :class="['pi', tab.icon, 'text-base']" />
|
||||
<span class="mt-0.5 text-[8px] font-medium uppercase tracking-wide">{{ tab.label }}</span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
// Linear Mode Components - Runway-style 2-Column Layout
|
||||
export { default as LinearTopBar } from './LinearTopBar.vue'
|
||||
export { default as LinearIconSidebar } from './LinearIconSidebar.vue'
|
||||
export { default as LinearCreationPanel } from './LinearCreationPanel.vue'
|
||||
export { default as LinearHistoryPanel } from './LinearHistoryPanel.vue'
|
||||
|
||||
@@ -27,6 +27,12 @@ const router = useRouter()
|
||||
const isTeam = computed(() => props.workspaceId === 'team')
|
||||
|
||||
const userMenuGroups = computed<MenuGroup[]>(() => [
|
||||
{
|
||||
label: 'Create',
|
||||
items: [
|
||||
{ label: 'Linear Mode', icon: 'pi pi-bolt', route: `/${props.workspaceId}/create` }
|
||||
]
|
||||
},
|
||||
{
|
||||
label: 'Overview',
|
||||
items: [
|
||||
@@ -48,6 +54,12 @@ const userMenuGroups = computed<MenuGroup[]>(() => [
|
||||
])
|
||||
|
||||
const teamMenuGroups = computed<MenuGroup[]>(() => [
|
||||
{
|
||||
label: 'Create',
|
||||
items: [
|
||||
{ label: 'Linear Mode', icon: 'pi pi-bolt', route: `/${props.workspaceId}/create` }
|
||||
]
|
||||
},
|
||||
{
|
||||
label: 'Overview',
|
||||
items: [
|
||||
|
||||
@@ -1,24 +1,51 @@
|
||||
<script setup lang="ts">
|
||||
import { ref } from 'vue'
|
||||
import LinearIconSidebar from '@/components/linear/LinearIconSidebar.vue'
|
||||
import LinearCreationPanel from '@/components/linear/LinearCreationPanel.vue'
|
||||
import LinearHistoryPanel from '@/components/linear/LinearHistoryPanel.vue'
|
||||
import LinearTopBar from '@/components/linear/LinearTopBar.vue'
|
||||
|
||||
const sessionName = ref('Untitled session')
|
||||
const credits = ref(4625)
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="linear-view flex h-screen flex-col bg-zinc-950">
|
||||
<!-- Top Bar with Logo, Home, Session Name, Credits -->
|
||||
<LinearTopBar />
|
||||
<div class="linear-view flex h-screen bg-zinc-950">
|
||||
<!-- Left Icon Sidebar (Chat, Tool, Apps, Workflow) -->
|
||||
<LinearIconSidebar />
|
||||
|
||||
<!-- Main Content -->
|
||||
<div class="flex flex-1 overflow-hidden">
|
||||
<!-- Left Icon Sidebar (Chat, Tool, Apps, Workflow) -->
|
||||
<LinearIconSidebar />
|
||||
<!-- Left Creation Panel (prompt, upload, settings, generate) -->
|
||||
<LinearCreationPanel />
|
||||
|
||||
<!-- Left Creation Panel (prompt, upload, settings, generate) -->
|
||||
<LinearCreationPanel />
|
||||
<!-- Right Main Area (queue/history) -->
|
||||
<div class="flex flex-1 flex-col">
|
||||
<!-- Top Bar -->
|
||||
<header class="flex h-12 shrink-0 items-center justify-between border-b border-zinc-800 bg-zinc-950 px-4">
|
||||
<div />
|
||||
|
||||
<!-- Right Main Area (queue/history) -->
|
||||
<!-- Center: Session Name -->
|
||||
<div class="flex items-center gap-1">
|
||||
<span class="text-sm text-zinc-300">{{ sessionName }}</span>
|
||||
<button class="p-1 text-zinc-500 transition-colors hover:text-zinc-300">
|
||||
<i class="pi pi-ellipsis-h text-xs" />
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Right: Credits + Upgrade -->
|
||||
<div class="flex items-center gap-3">
|
||||
<button class="text-zinc-500 transition-colors hover:text-zinc-300">
|
||||
<i class="pi pi-question-circle text-sm" />
|
||||
</button>
|
||||
<button class="text-zinc-500 transition-colors hover:text-zinc-300">
|
||||
<i class="pi pi-external-link text-sm" />
|
||||
</button>
|
||||
<span class="text-xs text-zinc-400">{{ credits.toLocaleString() }} credits</span>
|
||||
<button class="rounded-md bg-blue-600 px-3 py-1.5 text-xs font-medium text-white transition-colors hover:bg-blue-500">
|
||||
Upgrade
|
||||
</button>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<!-- Main Content Area -->
|
||||
<LinearHistoryPanel />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user