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>
12 lines
267 B
TypeScript
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 />
|
|
</>
|
|
);
|
|
}
|