t-convex-nextjs-saas/src/app/[locale]/page.tsx
nxtkofi 65e91fc6f6 chore(app): move pages to locale segment
Move home, sign-in, and sign-up pages under app/[locale] for next-intl routing support.

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
2026-04-21 20:53:33 +02:00

12 lines
267 B
TypeScript

import { useTranslations } from "next-intl";
import { ThemeChanger } from "@/components/core/ThemeChanger";
export default function Home() {
const t = useTranslations("HomePage");
return (
<>
<h1>{t("title")}</h1>
<ThemeChanger />
</>
);
}