feat: home module create to better organize the code

This commit is contained in:
2025-05-07 08:09:09 +02:00
parent 1a6f13e862
commit dc1fdec3e2
4 changed files with 2 additions and 2 deletions

View File

@@ -1 +1 @@
export { HomeLayout as default } from "@/modules/common/layouts/home";
export { HomeLayout as default } from "@/modules/home/layouts/home";

View File

@@ -1,8 +1,8 @@
import { PropsWithChildren } from "react";
import styles from "./home.module.scss";
import NavbarHeader from "../../components/navbar-header";
import UserDropdown from "@/modules/auth/components/user-dropdown";
import NavbarHeader from "@/modules/common/components/navbar-header";
export const HomeLayout: React.FC<PropsWithChildren> = ({ children }) => {
return (