refactor(ui): reorganize component directory structure
All checks were successful
Deploy Flowstate to VPS / deploy (push) Successful in 48s

This commit is contained in:
Chneemann 2026-08-18 10:18:06 +02:00
parent 8d46cee892
commit ca01a3b44e
No known key found for this signature in database
4 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ import { redirect } from "next/navigation";
import Sidebar from "@/app/components/layout/Sidebar";
import Header from "@/app/components/layout/Header";
import Navbar from "@/app/components/layout/Navbar";
import ErrorToast from "../components/ErrorToast";
import ErrorToast from "../components/ui/ErrorToast";
import Footer from "@/app/components/layout/Footer";
/**

View file

@ -4,7 +4,7 @@
*/
import BrandLogo from "./BrandLogo";
import SearchBar from "./SearchBar";
import SearchBar from "../ui/SearchBar";
import UserBadge from "./UserBadge";
export default function Header() {