6 lines
201 B
TypeScript
6 lines
201 B
TypeScript
import { t } from "@/i18n/common";
|
|
|
|
// Placeholder — Task 9 replaces this with the real dashboard.
|
|
export default function HomePage() {
|
|
return <h1 style={{ fontWeight: 700 }}>{t.tabs.home}</h1>;
|
|
}
|