Add Tab title in whole application

This commit is contained in:
AmirReza Jamali
2026-03-09 10:31:01 +03:30
parent 26c092db4a
commit d4a74182e4
20 changed files with 93 additions and 22 deletions
@@ -11,6 +11,7 @@ import Cookies from "js-cookie";
import { useState } from "react";
import { SubmitHandler, useForm } from "react-hook-form";
import InputGroup from "../FormElements/InputGroup";
import { ThemeToggleSwitch } from "../Layouts/header/theme-toggle";
export default function SigninWithPassword() {
const isMutating = useIsMutating();
@@ -28,6 +29,9 @@ export default function SigninWithPassword() {
};
return (
<form onSubmit={handleSubmit(onSubmit)}>
<div className="absolute right-4 top-4">
<ThemeToggleSwitch />
</div>
<InputGroup
type="username"
disabled={!!isMutating}