For now, I put Config Page to below the main page temporary. Open Config Button does not work.
14 lines
469 B
JavaScript
14 lines
469 B
JavaScript
import { useTranslation } from "react-i18next";
|
|
|
|
import styles from "./TitleBox.module.scss";
|
|
import chato_img from "@images/chato_white.png";
|
|
|
|
export const TitleBox = () => {
|
|
const { t } = useTranslation();
|
|
return (
|
|
<div className={styles.container}>
|
|
<img src={chato_img} className={styles.logo_chato} alt="VRCT logo chato" />
|
|
<p className={styles.title}>{t("config_page.config_title")}</p>
|
|
</div>
|
|
);
|
|
}; |