Alejandra
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with
3 additions and
3 deletions
-
frontend/index.html
-
frontend/public/assets/images/fastapi-logo.svg
-
frontend/public/assets/images/favicon.png
-
frontend/src/components/Common/Sidebar.tsx
-
frontend/src/routes/login.tsx
|
@ -5,7 +5,7 @@ |
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> |
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
|
|
<title>Full Stack FastAPI Project</title> |
|
|
<title>Full Stack FastAPI Project</title> |
|
|
<link rel="icon" type="image/x-icon" href="./src/assets/images/favicon.png" /> |
|
|
<link rel="icon" type="image/x-icon" href="/assets/images/favicon.png" /> |
|
|
</head> |
|
|
</head> |
|
|
<body> |
|
|
<body> |
|
|
<div id="root"></div> |
|
|
<div id="root"></div> |
|
|
Width:
|
Height:
|
Size: 6.2 KiB
Width:
|
Height:
|
Size: 6.2 KiB
|
Width:
|
Height:
|
Size: 4.9 KiB
Width:
|
Height:
|
Size: 4.9 KiB
|
|
@ -15,7 +15,7 @@ import { |
|
|
import { useQueryClient } from "@tanstack/react-query" |
|
|
import { useQueryClient } from "@tanstack/react-query" |
|
|
import { FiLogOut, FiMenu } from "react-icons/fi" |
|
|
import { FiLogOut, FiMenu } from "react-icons/fi" |
|
|
|
|
|
|
|
|
import Logo from "../../assets/images/fastapi-logo.svg" |
|
|
import Logo from "/assets/images/fastapi-logo.svg" |
|
|
import type { UserPublic } from "../../client" |
|
|
import type { UserPublic } from "../../client" |
|
|
import useAuth from "../../hooks/useAuth" |
|
|
import useAuth from "../../hooks/useAuth" |
|
|
import SidebarItems from "./SidebarItems" |
|
|
import SidebarItems from "./SidebarItems" |
|
|
|
@ -20,7 +20,7 @@ import { |
|
|
} from "@tanstack/react-router" |
|
|
} from "@tanstack/react-router" |
|
|
import { type SubmitHandler, useForm } from "react-hook-form" |
|
|
import { type SubmitHandler, useForm } from "react-hook-form" |
|
|
|
|
|
|
|
|
import Logo from "../assets/images/fastapi-logo.svg" |
|
|
import Logo from "/assets/images/fastapi-logo.svg" |
|
|
import type { Body_login_login_access_token as AccessToken } from "../client" |
|
|
import type { Body_login_login_access_token as AccessToken } from "../client" |
|
|
import useAuth, { isLoggedIn } from "../hooks/useAuth" |
|
|
import useAuth, { isLoggedIn } from "../hooks/useAuth" |
|
|
import { emailPattern } from "../utils" |
|
|
import { emailPattern } from "../utils" |
|
|