Reactjs – My login route layout still shows root layout components in nextjs 14?
I'm new in nextjs (App router). In my root app/layout.tsx I have sidebar and header components which should be available for all other pages: import { Inter } from "next/font/google"; import "./globals.css"; import Sidebar from "@/app/components/sidebar"; import Header from "@/app/components/header";…