Newer
Older
taehui / taehui-fe / src / app / [language] / page.tsx
@Taehui Taehui on 17 Mar 873 bytes 2024-03-17 오후 2:12
"use client";

import HitView from "@/app/[language]/components/HitView";
import LatestAvatarsView from "@/app/[language]/components/LatestAvatarsView";
import LatestCommentsView from "@/app/[language]/components/LatestCommentsView";
import LatestEssaysView from "@/app/[language]/components/LatestEssaysView";
import WantInput from "@/app/[language]/want/components/WantInput";
import { useTranslations } from "next-intl";

const Page = () => {
  const t = useTranslations();

  return (
    <>
      <WantInput />
      <hr />
      <h5>{t("main00")}</h5>
      <span>
        {t("main01")}
        <br />
        {t("main02")}
        <br />
        {t("main03")}
      </span>
      <hr />
      <HitView />
      <hr />
      <LatestEssaysView />
      <hr />
      <LatestCommentsView />
      <hr />
      <LatestAvatarsView />
    </>
  );
};

export default Page;