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.
8 lines
108 B
TypeScript
8 lines
108 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
const page = () => {
|
|
redirect("/");
|
|
};
|
|
|
|
export default page;
|