- Dockerfile + deploy.sh for Hetzner server - Email verification via Better Auth + Resend - Invite code flow (6-digit OTP, generate/join) - Settlement share percent fix (payer vs debtor) - OCR scanner fixes (date display, retry, viewfinder) - app.json icon/splash/adaptive-icon configured - iOS deployment target 15.5 (ML Kit requirement) - DB migration 0014: household_invitations table Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
11 lines
259 B
TypeScript
11 lines
259 B
TypeScript
import { PlaceholderScreen } from "@/src/components/features/PlaceholderScreen";
|
|
|
|
export default function DashboardScreen() {
|
|
return (
|
|
<PlaceholderScreen
|
|
title="Dashboard"
|
|
description="Your financial overview will appear here"
|
|
/>
|
|
);
|
|
}
|