Simpl-Resultat/src/pages/BudgetPage.tsx
Le-King-Fu 801404ca21 Initial project scaffold: Tauri v2 + React + TypeScript + TailwindCSS v4
- Tauri v2 with SQLite plugin and full database schema
- React with react-router-dom, i18n (FR/EN), recharts, lucide-react
- TailwindCSS v4 with custom Bleu/Creme/Terracotta palette
- App shell with sidebar navigation (7 pages)
- Dashboard with summary cards, page stubs for all sections
- Default category configuration (10 top-level categories)
- TypeScript interfaces matching SQLite schema

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-07 11:05:11 +00:00

14 lines
414 B
TypeScript

import { useTranslation } from "react-i18next";
export default function BudgetPage() {
const { t } = useTranslation();
return (
<div>
<h1 className="text-2xl font-bold mb-6">{t("budget.title")}</h1>
<div className="bg-[var(--card)] rounded-xl p-8 border border-[var(--border)] text-center text-[var(--muted-foreground)]">
<p>{t("common.noResults")}</p>
</div>
</div>
);
}