feat: refactor user handling and integrate toast notifications for login feedback

This commit is contained in:
2025-07-24 14:12:06 +02:00
parent 06dd1fc80e
commit b69b446e3d
9 changed files with 207 additions and 179 deletions

View File

@@ -1,8 +1,8 @@
import { useState } from "react";
import React from "react";
import LoginCard from "./LoginCard";
import { greeting } from "../utils/functions";
import { changeTheme } from "../utils/functions";
import { greeting } from "../utils/frontendService";
import { changeTheme } from "../utils/frontendService";
const Header: React.FC = () => {
const [loginCardVisible, setLoginCardVisible] = useState(false);