klg-asutk-app/app/page.tsx
Yuriy 0150aba4f5 Consolidation: KLG ASUTK + PAPA integration
- Unify API: lib/api.ts uses /api/v1, inbox uses /api/inbox (rewrites)
- Remove localhost refs: openapi, inbox page
- Add rewrites: /api/inbox|tmc -> inbox-server, /api/v1 -> FastAPI
- Add stub routes: knowledge/insights, recommendations, search, log-error
- Transfer from PAPA: prompts (inspection, tmc), scripts, supabase, data/tmc-requests
- Fix inbox-server: ORDER BY created_at, package.json
- Remove redundant app/api/inbox/files route (rewrites handle it)
- knowledge/ in gitignore (large PDFs)

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-08 17:18:31 +03:00

19 lines
658 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// app/page.tsx
import Link from "next/link";
export default function HomePage() {
return (
<main style={{ padding: 24, maxWidth: 900, margin: "0 auto" }}>
<h1 style={{ fontSize: 32, fontWeight: 700 }}>Numerology App</h1>
<p style={{ marginTop: 12, fontSize: 16 }}>
Главная страница подключена. Дальше сюда можно перенести ваш калькулятор
и отчёт (express / углубленный / полный).
</p>
<div style={{ marginTop: 20 }}>
<Link href="/dashboard">Перейти к дашборду</Link>
</div>
</main>
);
}