Etapa 0 aprobada condicionalmente. Queda pendiente tu validación visual: abrí /library en https://inq-roi.inqualityhq.com y confirmá que el footer muestra InQ ROI · Powered by InQuality · v0.8.0 · Hecho desde Paraguay 🇵🇾.
Some checks failed
/ Deploy to Cloudflare Pages (push) Has been cancelled

This commit is contained in:
2026-07-07 17:55:19 -03:00
parent 10e477cc45
commit d64078d96a
6 changed files with 117 additions and 284 deletions

View File

@@ -1,8 +1,10 @@
import { APP_VERSION } from '@/lib/version'
export function AppFooter() {
return (
<footer className="mt-12 py-4 border-t border-slate-100 text-center">
<p className="text-xs text-slate-400">
InQ ROI · Powered by InQuality · v0.1.0 · Hecho desde Paraguay 🇵🇾
InQ ROI · Powered by InQuality · v{APP_VERSION} · Hecho desde Paraguay 🇵🇾
</p>
</footer>
)

View File

@@ -11,6 +11,7 @@ import { supabaseProcessRepo, type ProcessWithUserNames } from '@/persistence/su
import { formatCurrency, formatSimulationTimestamp } from '@/lib/format'
import type { Process, ProcessGroup, Simulation } from '@/domain/types'
import { AppHeader } from '@/components/AppHeader'
import { AppFooter } from '@/components/AppFooter'
// ─── Helpers ──────────────────────────────────────────────────────────────────
@@ -932,6 +933,7 @@ export function LibraryPage() {
/>
)}
</div>
<AppFooter />
</div>
<Toast message={toastMessage} />

1
src/lib/version.ts Normal file
View File

@@ -0,0 +1 @@
export const APP_VERSION = '0.8.0'