Separate the navbar from the root layout, keeping the root layout clean. Create two child layout folders: 1. main: for basic layouts such as the navbar 2. clean: for clean layouts without any extra elements.
6 lines
101 B
TypeScript
6 lines
101 B
TypeScript
import HomeIndex from "@/features/home";
|
|
|
|
export default function Page() {
|
|
return <HomeIndex />;
|
|
}
|