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