t-convex-nextjs-saas/src/app/page.tsx

13 lines
268 B
TypeScript
Raw Normal View History

import { useTranslations } from "next-intl";
2026-03-27 23:15:07 +00:00
import { ThemeChanger } from "../components/core/ThemeChanger";
export default function Home() {
const t = useTranslations("HomePage");
2026-03-27 23:15:07 +00:00
return (
<>
<h1>{t("title")}</h1>
<ThemeChanger />
</>
);
}