All checks were successful
Build pitch-deck / build-push-deploy (push) Successful in 1m35s
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-consent (push) Successful in 42s
CI / test-python-voice (push) Successful in 36s
CI / test-bqas (push) Successful in 30s
- New tab: Kontenrahmen SKR04 with 10 collapsible classes, 62 accounts - KPI fixes: MRR=Dec run-rate, ACV=annual, NRR→Growth(YoY), BurnRate on neg EBIT - KPI tab: added Gross Margin + Revenue Growth rows, fixed all labels - LLM costs: 100 EUR/employee/month (scaling with headcount) - 3rd Party API: +167 EUR/Mon for annual regulation ingestion - Kreditrückzahlungen: 5014 EUR/Mon ab Aug 2028 (160k, 8%, 36 Monate) - ProjectionFooter: readable size (12px instead of 9px) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
621 B
TypeScript
21 lines
621 B
TypeScript
'use client'
|
|
|
|
import { Language } from '@/lib/types'
|
|
|
|
interface ProjectionFooterProps {
|
|
lang: Language
|
|
}
|
|
|
|
export default function ProjectionFooter({ lang }: ProjectionFooterProps) {
|
|
const de = lang === 'de'
|
|
return (
|
|
<div className="mt-3 pt-2 border-t border-white/5">
|
|
<p className="text-xs text-white/30 text-center italic">
|
|
{de
|
|
? 'Alle Finanzdaten sind Planzahlen und stellen keine Garantie für künftige Ergebnisse dar (Stand: Q2 2026)'
|
|
: 'All financial data are projections and do not constitute a guarantee of future results (as of: Q2 2026)'}
|
|
</p>
|
|
</div>
|
|
)
|
|
}
|