import AppLayout from "@/components/AppLayout"; import ChargesTable from "@/components/ChargesTable"; import Totals from "@/components/Totals"; import { getCharges, getTotals } from "@/lib/db"; // Immer frisch aus der DB lesen (kein Caching). export const dynamic = "force-dynamic"; export default function Home() { const charges = getCharges(); const totals = getTotals(); return (

Ladungen

); }