diff options
Diffstat (limited to 'app/src/components')
-rw-r--r-- | app/src/components/Dashboard.tsx | 2 | ||||
-rw-r--r-- | app/src/components/Login.tsx | 2 | ||||
-rw-r--r-- | app/src/components/Signup.tsx | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/app/src/components/Dashboard.tsx b/app/src/components/Dashboard.tsx index 373a07f..ccbfd99 100644 --- a/app/src/components/Dashboard.tsx +++ b/app/src/components/Dashboard.tsx @@ -6,6 +6,8 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faTrash } from '@fortawesome/free-solid-svg-icons'; function Dashboard() { + document.title = 'LinkLogger | Dashboard' + interface Log { id: number; link: string; diff --git a/app/src/components/Login.tsx b/app/src/components/Login.tsx index 8235b65..a3e5cf9 100644 --- a/app/src/components/Login.tsx +++ b/app/src/components/Login.tsx @@ -5,6 +5,8 @@ import { useNavigate } from 'react-router-dom'; import axios from 'axios'; function Login() { + document.title = 'LinkLogger | Login' + const [username, setUsername] = useState(''); const [password, setPassword] = useState(''); const [isSubmitting, setIsSubmitting] = useState(false); diff --git a/app/src/components/Signup.tsx b/app/src/components/Signup.tsx index 293b51a..547fa9e 100644 --- a/app/src/components/Signup.tsx +++ b/app/src/components/Signup.tsx @@ -5,6 +5,8 @@ import { useNavigate } from 'react-router-dom'; import axios from 'axios'; function Signup() { + document.title = 'LinkLogger | Signup' + const [username, setUsername] = useState(''); const [password, setPassword] = useState(''); const [passwordConfirm, setPasswordConfirm] = useState(''); |